Skip to content

Commit

Permalink
ci(pytest): add pytest-asyncio
Browse files Browse the repository at this point in the history
  • Loading branch information
deedy5 committed Feb 6, 2025
1 parent b4f8a70 commit d6bbf0d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
for version in 3.8 3.9 3.10 3.11 3.12 3.13; do
uv venv --preview --python $version
source .venv/bin/activate
uv pip install certifi pytest typing_extensions
uv pip install certifi pytest pytest-asyncio typing_extensions
uv pip install primp --no-index --find-links dist --force-reinstall
pytest
done
Expand All @@ -96,7 +96,7 @@ jobs:
for version in 3.8 3.9 3.10 3.11 3.12 3.13; do
uv venv --preview --python $version
source .venv/bin/activate
uv pip install certifi pytest typing_extensions
uv pip install certifi pytest pytest-asyncio typing_extensions
uv pip install primp --no-index --find-links dist --force-reinstall
pytest
done
Expand All @@ -114,7 +114,7 @@ jobs:
set -e
python3 -m venv .venv
source .venv/bin/activate
pip install certifi pytest typing_extensions
pip install certifi pytest pytest-asyncio typing_extensions
pip install primp --no-index --find-links dist --force-reinstall
pytest
Expand Down Expand Up @@ -188,7 +188,7 @@ jobs:
for version in 3.8 3.9 3.10 3.11 3.12 3.13; do
python$version -m venv .venv
source .venv/bin/activate
pip install certifi pytest typing_extensions
pip install certifi pytest pytest-asyncio typing_extensions
pip install primp --no-index --find-links dist --force-reinstall
pytest
done
Expand Down Expand Up @@ -230,7 +230,7 @@ jobs:
for version in 3.8 3.9 3.10 3.11 3.12 3.13; do
uv venv --preview --python $version
source .venv/Scripts/activate
uv pip install certifi pytest typing_extensions
uv pip install certifi pytest pytest-asyncio typing_extensions
uv pip install primp --no-index --find-links dist --force-reinstall
pytest
done
Expand Down Expand Up @@ -269,7 +269,7 @@ jobs:
for version in 3.8 3.9 3.10 3.11 3.12 3.13; do
uv venv --preview --python $version
source .venv/bin/activate
uv pip install certifi pytest typing_extensions
uv pip install certifi pytest pytest-asyncio typing_extensions
uv pip install primp --no-index --find-links dist --force-reinstall
pytest
done
Expand Down

0 comments on commit d6bbf0d

Please sign in to comment.