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-05-06 18:02:47 +0200
commit4d27daa332b301a8cfcf0cac6345d56bfc17e5fe (patch)
tree333c0921378f7f2b66afe0f2207a76d3fae04b7b /tox.ini
parent65873fba7b51171e35d4496fdf5bf38f54285dfa (diff)
downloadpygments-4d27daa332b301a8cfcf0cac6345d56bfc17e5fe.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}