Skip to content

Commit 1e67802

Browse files
committed
Test additional windows versions
1 parent b591e9c commit 1e67802

File tree

2 files changed

+43
-1
lines changed

2 files changed

+43
-1
lines changed

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
strategy:
3838
fail-fast: false
3939
matrix:
40-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
40+
python-version: ['2.7', '3.3', '3.4', '3.5', '3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
4141
steps:
4242
- name: Checkout
4343
uses: actions/checkout@v4.2.2

tox-windows.ini

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,48 @@ envlist = 3.8,3.9,3.10,3.11,3.12,3.13
55
commands =
66
pytest {posargs:test} --junitxml=junit-python{envname}.xml --verbose
77

8+
[testenv:2.7]
9+
basepython = python2.7
10+
deps =
11+
pytest
12+
PyYAML
13+
setuptools
14+
15+
[testenv:3.3]
16+
basepython = python3.3
17+
deps =
18+
pytest
19+
PyYAML
20+
setuptools
21+
22+
[testenv:3.4]
23+
basepython = python3.4
24+
deps =
25+
pytest
26+
PyYAML
27+
setuptools
28+
29+
[testenv:3.5]
30+
basepython = python3.5
31+
deps =
32+
pytest
33+
PyYAML
34+
setuptools
35+
36+
[testenv:3.6]
37+
basepython = python3.6
38+
deps =
39+
pytest
40+
PyYAML
41+
setuptools
42+
43+
[testenv:3.7]
44+
basepython = python3.7
45+
deps =
46+
pytest
47+
PyYAML
48+
setuptools
49+
850
[testenv:3.8]
951
basepython = python3.8
1052
deps =

0 commit comments

Comments
 (0)