Skip to content

Commit a71b699

Browse files
author
Delega Bot
committed
ci: add pytest-asyncio to publish.yml test step
The publish.yml test step is a duplicate of ci.yml but with its own dependency list. It was missing pytest-asyncio, so the 11 new async tests added in 0.2.1 failed the publish gate on that commit and blocked the PyPI upload. ci.yml was updated in the same PR; publish.yml was missed. Small cherry-pick direct to main to unblock re-tagging v0.2.1.
1 parent 7eabd02 commit a71b699

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
run: |
2727
python -m pip install --upgrade pip
2828
pip install -e ".[async]"
29-
pip install pytest
29+
pip install pytest pytest-asyncio
3030
pytest tests/ -v
3131
3232
publish:

0 commit comments

Comments
 (0)