Skip to content

Commit d2620be

Browse files
committed
Workflow updates for asyncio tests
1 parent d3c053c commit d2620be

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.evergreen/run-tests.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -271,6 +271,8 @@ if [ -z "$GREEN_FRAMEWORK" ]; then
271271
fi
272272
# shellcheck disable=SC2048
273273
uv run ${UV_ARGS[*]} pytest $PYTEST_ARGS
274+
PYTEST_ARGS="$PYTEST_ARGS -m asyncio"
275+
uv run ${UV_ARGS[*]} pytest $PYTEST_ARGS
274276
else
275277
# shellcheck disable=SC2048
276278
uv run ${UV_ARGS[*]} green_framework_test.py $GREEN_FRAMEWORK -v $TEST_ARGS

.github/workflows/test-python.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,10 @@ jobs:
9494
run: |
9595
if [[ "${{ matrix.python-version }}" == "3.13t" ]]; then
9696
pytest -v --durations=5 --maxfail=10
97+
pytest -v --durations=5 --maxfail=10 -m asyncio
9798
else
9899
just test
100+
just test-async
99101
fi
100102
101103
doctest:

0 commit comments

Comments
 (0)