Skip to content

Commit c6d2a36

Browse files
committed
PR
1 parent 6a1b669 commit c6d2a36

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

evergreen/execute-tests.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
set -o errexit # Exit the script with error if any of the commands fail
44

55
# Environment variables used as input:
6-
# FRAMEWORK Set to specify .NET framework to test against. Values: "Net472", "NetStandard21",
6+
# FRAMEWORK Set to specify .NET framework to test against. Use Target Framework Moniker values.
77
# TEST_CATEGORY Set to specify a test category to filter by.
88
# TEST_PROJECT_PATH Set glob filter to find test projects.
99

1010
FRAMEWORK=${FRAMEWORK:-}
1111
TEST_CATEGORY=${TEST_CATEGORY:-Integration}
12-
TEST_PROJECT_PATH=${TEST_PROJECT_PATH:-./tests/**/[!Atlas]*.Tests.csproj}
12+
TEST_PROJECT_PATH=${TEST_PROJECT_PATH:-./tests/**/[!AtlasConnectivity]*.Tests.csproj}
1313

1414
if [ "$FRAMEWORK" = "netstandard2.1" ]; then
1515
FRAMEWORK="netcoreapp3.1"

evergreen/run-smoke-tests.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ fi
1010

1111
. ./evergreen/append-myget-package-source.sh
1212

13-
export ADD_NET10_TFM="1" # Remove after cake removal
1413
export DRIVER_PACKAGE_VERSION="${DRIVER_PACKAGE_VERSION}"
1514
./evergreen/compile-sources.sh "$SMOKE_TESTS_PROJECT"
1615
TEST_PROJECT_PATH="$SMOKE_TESTS_PROJECT" ./evergreen/execute-tests.sh

0 commit comments

Comments
 (0)