summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorChris Dent <chris.dent@gmail.com>2018-10-23 16:09:42 +0100
committerGitHub <noreply@github.com>2018-10-23 16:09:42 +0100
commit9a873a24759f69d6414042abdfc2fde21f8cca21 (patch)
tree953b5c70cc968b523e42e7bf0594b8ac49216b9d /tox.ini
parent95efbbf0137de2f0e472ca12d60cfe242c01ec27 (diff)
parent0604a3a5fd1a64098cbdaf44bbb76b805c5233c0 (diff)
downloadpaste-git-9a873a24759f69d6414042abdfc2fde21f8cca21.tar.gz
Merge pull request #1 from cdent/pytest
Switch from nose to pytest
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini6
1 files changed, 3 insertions, 3 deletions
diff --git a/tox.ini b/tox.ini
index 5e34c30..c154d05 100644
--- a/tox.ini
+++ b/tox.ini
@@ -3,7 +3,7 @@ envlist = py26, py27, py34, py35, py36, py37, pypy
[testenv]
deps =
- coverage
- nose
+ pytest
+ pytest-cov
commands =
- nosetests {posargs:--with-coverage --cover-package=paste}
+ py.test {posargs}