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 17f024d commit d5b0689Copy full SHA for d5b0689
.github/workflows/test.yml
@@ -80,15 +80,15 @@ jobs:
80
# TODO: do something about all of this repeated usage of python 3.11 (same
81
# the docs/lint job in tox.ini).
82
python-version: |
83
- ${{ matrix.python}}
84
3.11
+ ${{ matrix.python}}
85
- name: Install apt packages
86
run: sudo apt-get update && sudo apt-get install libcurl4-openssl-dev
87
- name: Install tox
88
- run: python -m pip install tox -c requirements.txt
+ run: python3.11 -m pip install tox -c requirements.txt
89
90
- name: Run test suite
91
- run: python -m tox -v -v -e ${{ matrix.tox_env }}
+ run: tox -e ${{ matrix.tox_env }}
92
93
test_win:
94
# Windows tests are fairly slow, so only run one configuration here.
0 commit comments