summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorHugo van Kemenade <hugovk@users.noreply.github.com>2021-10-23 12:39:36 +0300
committerGitHub <noreply@github.com>2021-10-23 11:39:36 +0200
commit95ee5f64d6a7611772bd85aed70796d423b37a01 (patch)
tree3a17708c41d6c9827f160fb55aa56d0e79e3c887 /tox.ini
parenta98980bd5dda20bf83cd1cc39c1178cb4b490552 (diff)
downloadpygments-git-95ee5f64d6a7611772bd85aed70796d423b37a01.tar.gz
Add support for Python 3.10 (#1917)
* Add support for Python 3.10 * Drop the dot https://twitter.com/pytestdotorg/status/753767547866972160
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini4
1 files changed, 2 insertions, 2 deletions
diff --git a/tox.ini b/tox.ini
index c45493d1..aa26979c 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,11 +1,11 @@
[tox]
-envlist = py35, py36, py37, py38, py39, pypy3, lint
+envlist = py35, py36, py37, py38, py39, py310, pypy3, lint
[testenv]
deps =
pytest
pytest-cov
-commands = py.test {posargs}
+commands = pytest {posargs}
[testenv:lint]