Skip to content

Commit defcfbf

Browse files
committed
Update tox config
1 parent f4b7b47 commit defcfbf

2 files changed

Lines changed: 14 additions & 3 deletions

File tree

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
12+
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
1313

1414
steps:
1515
- uses: actions/checkout@v4
@@ -20,4 +20,4 @@ jobs:
2020
- name: Install dependencies
2121
run: pip install tox tox-gh
2222
- name: Test with tox
23-
run: tox --skip-missing-interpreters
23+
run: tox

tox.ini

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
[tox]
77
# pip is broken on py32
8-
envlist = py36, py37, py38, py39, py310, py311, py312, py313
8+
env_list = py36, py37, py38, py39, py310, py311, py312, py313
99

1010
[testenv]
1111
install_command=pip install {packages}
@@ -15,3 +15,14 @@ commands =
1515
deps =
1616
coverage
1717
-e.
18+
19+
[gh]
20+
python =
21+
3.6: py36
22+
3.7: py37
23+
3.8: py38
24+
3.9: py39
25+
3.10: py310
26+
3.11: py311
27+
3.12: py312
28+
3.13: py313

0 commit comments

Comments
 (0)