Skip to content
Snippets Groups Projects
Unverified Commit 61a3b75b authored by ulif's avatar ulif
Browse files

Fix testing workflow.

Try to setup multiple Python versions for a single `tox` run. We need to
do this, because coverage testing succeeds only when tests have run over
Python3 and Python3 tests.

Settung up multiple Python versions at once is supported since
`setup-python@v4.40`.
parent e2867ba5
Branches
No related tags found
No related merge requests found
......@@ -20,19 +20,19 @@ jobs:
os:
- ubuntu
config:
#- ["2.7", "py27"]
#- ["3.5", "py35"]
#- ["3.6", "py36"]
#- ["3.7", "py37"]
#- ["3.8", "py38"]
- ["3.9", "lint,clean,py27,py39,report"]
#- ["pypy-2.7", "pypy"]
#- ["pypy-3.7", "pypy3"]
#- [ ["2.7"], "py27"]
#- [ ["3.5"], "py35"]
#- [ ["3.6"], "py36"]
#- [ ["3.7"], "py37"]
#- [ ["3.8"], "py38"]
- [ ["2.7", "3.9"], "lint,clean,py27,py39,report"]
#- [ ["pypy-2.7"], "pypy"]
#- [ ["pypy-3.7"], "pypy3"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.config[0] }}
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.config[0] }}
- name: Install dependencies
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment