summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini13
1 files changed, 12 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index 5f5f357..d9d64fe 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,11 +1,12 @@
[tox]
-envlist = py27,py35,py36,py37,py38,py39,black,pep8py2,pep8py3,doc
+envlist = py27,py35,py36,py37,py38,py39,py310,black,pep8py2,pep8py3,doc
skip_missing_interpreters = true
[testenv]
commands =
coverage run --parallel-mode tests.py
coverage combine
+ coverage xml
coverage report -m
deps =
lxml
@@ -52,3 +53,13 @@ exclude = .tox,*.egg,dist,build,other
show-source = true
ignore = E402, F811
max-line-length = 98
+
+[gh-actions]
+python =
+ 2.7: py27, pep8py2
+ 3.5: py35
+ 3.6: py36
+ 3.7: py37
+ 3.8: py38, pep8py3, doc
+ 3.9: py39, black
+ 3.10: py310