Skip to content

Commit af0c3bb

Browse files
committed
eliminate tox, use pytest without it
1 parent ddbdb62 commit af0c3bb

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

.github/workflows/python-ci.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,7 @@ jobs:
2020
run: |
2121
python -c "import sys; print(sys.version)"
2222
python -c "import struct; print(struct.calcsize('P') * 8)"
23-
- name: Install dependencies
24-
run: |
25-
python -m pip install --upgrade pip
26-
pip install tox
27-
- name: Test with tox
28-
run: tox -e py39
23+
- name: Install testing dependencies and project
24+
run: pip install -r -dev-requirements.txt .
25+
- name: Run pytest tests
26+
run: pytest

0 commit comments

Comments
 (0)