Skip to content

Commit 42cd6dc

Browse files
committed
Remove the use of tox-gh-actions
In this package, the GH actions always run a consistent set of tox environments only. Using tox-gh-actions has no real advantage over running a dedicated tox env (i.e. plain `py`) and requires duplicating all the environment declarations.
1 parent eb48865 commit 42cd6dc

File tree

2 files changed

+2
-11
lines changed

2 files changed

+2
-11
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ jobs:
2323
- name: Install dependencies
2424
run: |
2525
python -m pip install --upgrade pip
26-
pip install tox tox-gh-actions
26+
pip install tox
2727
- name: Test with tox
28-
run: tox -vv
28+
run: tox -vv -e py

tox.ini

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,6 @@ isolated_build = True
66
[tox:hudson]
77
downloadcache = {toxworkdir}/_download
88

9-
[gh-actions]
10-
python =
11-
3.5: py35
12-
3.6: py36
13-
3.7: py37
14-
3.8: py38
15-
3.9: py39
16-
3.10: py310
17-
189
[testenv]
1910
description = run test suite under {basepython}
2011
deps =

0 commit comments

Comments
 (0)