Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SNOW-1175042 move regression tests parameters to parameters-local #878

Merged
merged 2 commits into from
Feb 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,7 @@ __pycache__/
*.xsd.cs

# Unencrypted file
Snowflake.Data.Tests/parameters.json
*.xml

# WhiteSource
Expand Down
1 change: 1 addition & 0 deletions ci/container/build_component.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ THIS_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
SOURCE_ROOT=${SOURCE_ROOT:-/mnt/host}

cd $SOURCE_ROOT
cp Snowflake.Data.Tests/parameters-local.json Snowflake.Data.Tests/parameters.json
echo "[INFO] Running dotnet restore"
dotnet restore
echo "[INFO] Building"
Expand Down
1 change: 1 addition & 0 deletions ci/container/test_component.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@ export SOURCE_ROOT=${SOURCE_ROOT:-/mnt/host}
export WORKSPACE=${WORKSPACE:-/mnt/workspace}

cd $SOURCE_ROOT
cp Snowflake.Data.Tests/parameters-local.json Snowflake.Data.Tests/parameters.json
# todo unignore MaxLobSizeIT after SNOW-1058345 is fixed
dotnet test -f net6.0 -l "console;verbosity=normal" --logger:"junit;LogFilePath=$WORKSPACE/junit-dotnet.xml" --filter "FullyQualifiedName!=Snowflake.Data.Tests.IntegrationTests.MaxLobSizeIT"
Loading