File tree Expand file tree Collapse file tree 4 files changed +6
-3
lines changed Expand file tree Collapse file tree 4 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 28
28
- tox_env : py37
29
29
- tox_env : py38
30
30
- tox_env : py39
31
+ - tox_env : py310
31
32
- tox_env : packaging
32
33
33
34
steps :
Original file line number Diff line number Diff line change @@ -26,8 +26,8 @@ To run only some selected tests::
26
26
# Only tests matching 'ansible' on 4 processes with pytest-xdist
27
27
tox -- -v -n 4 -k ansible test
28
28
29
- # Only modules tests on Python 3 and spawn a pdb on error
30
- tox -e py3 -- -v --pdb test/test_modules.py
29
+ # Only modules tests on a specific Python 3, e.g., 3.8 and spawn a pdb on error
30
+ tox -e py38 -- -v --pdb test/test_modules.py
31
31
32
32
33
33
Code style
Original file line number Diff line number Diff line change @@ -21,6 +21,8 @@ classifiers =
21
21
Programming Language :: Python :: 3.6
22
22
Programming Language :: Python :: 3.7
23
23
Programming Language :: Python :: 3.8
24
+ Programming Language :: Python :: 3.9
25
+ Programming Language :: Python :: 3.10
24
26
Topic :: Software Development :: Testing
25
27
Topic :: System :: Systems Administration
26
28
Framework :: Pytest
Original file line number Diff line number Diff line change 1
1
[tox]
2
2
envlist =
3
3
lint
4
- py{36,37,38,39}
4
+ py{36,37,38,39,310 }
5
5
doc
6
6
packaging
7
7
You can’t perform that action at this time.
0 commit comments