We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41fe61e commit 47b8c9dCopy full SHA for 47b8c9d
.evergreen/run-tests.sh
@@ -271,9 +271,13 @@ if [ -z "$GREEN_FRAMEWORK" ]; then
271
fi
272
# shellcheck disable=SC2048
273
uv run ${UV_ARGS[*]} pytest $PYTEST_ARGS
274
- PYTEST_ARGS="$PYTEST_ARGS -m asyncio"
275
- # shellcheck disable=SC2048
276
- uv run ${UV_ARGS[*]} pytest $PYTEST_ARGS
+
+ # Workaround until unittest -> pytest conversion is complete
+ if [ -z "$TEST_SUITES" ]; then
277
+ PYTEST_ARGS="$PYTEST_ARGS -m asyncio"
278
+ # shellcheck disable=SC2048
279
+ uv run ${UV_ARGS[*]} pytest $PYTEST_ARGS
280
+ fi
281
else
282
283
uv run ${UV_ARGS[*]} green_framework_test.py $GREEN_FRAMEWORK -v $TEST_ARGS
0 commit comments