Skip to content

Commit

Permalink
SNOW-1175042 move regression tests parameters to parameters-local (#878)
Browse files Browse the repository at this point in the history
### Description
Please explain the changes you made here.

### Checklist
- [ ] Code compiles correctly
- [ ] Code is formatted according to [Coding
Conventions](../CodingConventions.md)
- [ ] Created tests which fail without the change (if possible)
- [ ] All tests passing (`dotnet test`)
- [ ] Extended the README / documentation, if necessary
- [ ] Provide JIRA issue id (if possible) or GitHub issue id in PR name
  • Loading branch information
sfc-gh-akolodziejczyk authored Feb 29, 2024
1 parent a072afd commit 5ecb4fa
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 0 deletions.
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
File renamed without changes.
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"

0 comments on commit 5ecb4fa

Please sign in to comment.