We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09ad64f commit 7ac22f1Copy full SHA for 7ac22f1
.github/workflows/test.yml
@@ -22,7 +22,7 @@ jobs:
22
strategy:
23
matrix:
24
os: [ubuntu-latest, windows-latest]
25
- python-version: ["3.7", "3.8", "3.9", "3.10"]
+ python-version: ["3.10"] # ["3.7", "3.8", "3.9", "3.10"]
26
27
runs-on: ${{ matrix.os }}
28
@@ -38,11 +38,11 @@ jobs:
38
- name: Install dependencies
39
run: |
40
python -m pip install --upgrade pip
41
- pip install codecov tox
+ pip install codecov tox tox-github-actions
42
43
# with "-e py" tox runs the python version of the current environment
44
- name: Unittests with tox
45
- run: tox -e py
+ run: tox # -e py
46
47
# Coverage does not work for private repos
48
- name: Upload coverage to Codecov
0 commit comments