summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2019-05-06 18:02:47 +0200
committerGeorg Brandl <georg@python.org>2019-11-10 10:15:13 +0100
commit7827966acdb6431636520d20fc3c148ce52de59b (patch)
tree13a9316eb3eb964c22da0a08f046d44cd81470d0 /tox.ini
parenta281ff8367a3a5f4cc17c9956e9273593558d336 (diff)
downloadpygments-git-7827966acdb6431636520d20fc3c148ce52de59b.tar.gz
Remove unittest classes from the test suite.
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini9
1 files changed, 5 insertions, 4 deletions
diff --git a/tox.ini b/tox.ini
index 2c63c292..98aedc1a 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,7 +1,8 @@
[tox]
-envlist = py27, py35, py36, py37
+envlist = py27, py36, py37
+
[testenv]
deps =
- nose
- coverage
-commands = python -d tests/run.py {posargs}
+ pytest
+ pytest-cov
+commands = py.test {posargs}