Skip to content

Commit b545dd1

Browse files
Copilotbinyamin555
andcommitted
Fix CI: install pytest-asyncio in all workflow test steps
Co-authored-by: binyamin555 <42520501+binyamin555@users.noreply.github.com>
1 parent 1414576 commit b545dd1

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/python-test-linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
pip install dist/*.whl
4040
- name: Test with pytest
4141
run: |
42-
python -m pip install typing-extensions
42+
python -m pip install typing-extensions pytest-asyncio
4343
pytest
4444
4545
build:
@@ -71,6 +71,6 @@ jobs:
7171
pip install dist/*.whl
7272
- name: Test with pytest
7373
run: |
74-
python -m pip install typing-extensions
74+
python -m pip install typing-extensions pytest-asyncio
7575
pytest
7676

.github/workflows/python-test-macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
pip install dist/*.whl
4040
- name: Test with pytest
4141
run: |
42-
python -m pip install typing-extensions
42+
python -m pip install typing-extensions pytest-asyncio
4343
pytest
4444
4545
build:
@@ -71,6 +71,6 @@ jobs:
7171
pip install dist/*.whl
7272
- name: Test with pytest
7373
run: |
74-
python -m pip install typing-extensions
74+
python -m pip install typing-extensions pytest-asyncio
7575
pytest
7676

.github/workflows/python-test-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,6 @@ jobs:
4646
}
4747
- name: Test with pytest
4848
run: |
49-
python -m pip install typing-extensions
49+
python -m pip install typing-extensions pytest-asyncio
5050
pytest
5151

0 commit comments

Comments
 (0)