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 d3c053c commit d2620beCopy full SHA for d2620be
.evergreen/run-tests.sh
@@ -271,6 +271,8 @@ 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
+ uv run ${UV_ARGS[*]} pytest $PYTEST_ARGS
276
else
277
278
uv run ${UV_ARGS[*]} green_framework_test.py $GREEN_FRAMEWORK -v $TEST_ARGS
.github/workflows/test-python.yml
@@ -94,8 +94,10 @@ jobs:
94
run: |
95
if [[ "${{ matrix.python-version }}" == "3.13t" ]]; then
96
pytest -v --durations=5 --maxfail=10
97
+ pytest -v --durations=5 --maxfail=10 -m asyncio
98
99
just test
100
+ just test-async
101
102
103
doctest:
0 commit comments