Skip to content

Commit 2571556

Browse files
committed
Use dotted tox factors, now that they are available
1 parent 3c40550 commit 2571556

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,25 +12,25 @@ jobs:
1212
matrix:
1313
include:
1414
- python-version: "3.8"
15-
toxfactor: py38
15+
toxfactor: py3.8
1616
ignore-typecheck-outcome: true
1717
ignore-test-outcome: false
1818
- python-version: "3.9"
19-
toxfactor: py39
19+
toxfactor: py3.9
2020
ignore-typecheck-outcome: true
2121
ignore-test-outcome: false
2222
- python-version: "3.10"
23-
toxfactor: py310
23+
toxfactor: py3.10
2424
ignore-typecheck-outcome: true
2525
ignore-test-outcome: false
2626
- python-version: "3.11"
27-
toxfactor: py311
27+
toxfactor: py3.11
2828
ignore-typecheck-outcome: true
2929
ignore-test-outcome: false
3030
- python-version: "3.12-dev"
31-
toxfactor: py312
31+
toxfactor: py3.12
3232
ignore-typecheck-outcome: true
33-
ignore-test-outcome: false
33+
ignore-test-outcome:
3434

3535
steps:
3636
- uses: actions/checkout@v3

tox.ini

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
distshare = {homedir}/.tox/distshare
3-
envlist = py{38,39,310,311,312,313}-pytest{62,70,71,72,73,74,latest}-coverage
4-
py311-pytestlatest-xdist-coverage
3+
envlist = py{3.8,3.9,3.10,3.11,3.12,3.13}-pytest{6.2,7.0,7.1,7.2,7.3,7.4,latest}-coverage
4+
py3.11-pytestlatest-xdist-coverage
55
mypy
66

77
[testenv]
@@ -11,12 +11,12 @@ setenv =
1111
xdist: _PYTEST_MORE_ARGS=-n3 -rfsxX
1212
deps =
1313
pytestlatest: pytest
14-
pytest74: pytest~=7.4.0
15-
pytest73: pytest~=7.3.0
16-
pytest72: pytest~=7.2.0
17-
pytest71: pytest~=7.1.0
18-
pytest70: pytest~=7.0.0
19-
pytest62: pytest~=6.2.0
14+
pytest7.4: pytest~=7.4.0
15+
pytest7.3: pytest~=7.3.0
16+
pytest7.2: pytest~=7.2.0
17+
pytest7.1: pytest~=7.1.0
18+
pytest7.0: pytest~=7.0.0
19+
pytest6.2: pytest~=6.2.0
2020

2121
coverage: coverage[toml]
2222
xdist: pytest-xdist

0 commit comments

Comments
 (0)