Skip to content

Commit fcf070d

Browse files
CI: Fix missing pytest installation in the memory errors workflow (#56)
Apparently, I forgot to do that.
1 parent 3714dee commit fcf070d

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/tests.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,13 @@ jobs:
8383
- name: Set up Python 3.12
8484
uses: actions/setup-python@v2
8585
with:
86-
python-version: 3.12
86+
python-version: 3.12
87+
88+
- name: Install Pytest
89+
run: |
90+
pip install pytest pytest-asyncio pytest-memray typing_extensions
91+
shell: bash
92+
8793
- name: Build PyAwaitable
8894
run: pip install .
8995

0 commit comments

Comments
 (0)