diff options
author | Chris Dent <chris.dent@gmail.com> | 2018-10-23 16:09:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-23 16:09:42 +0100 |
commit | 9a873a24759f69d6414042abdfc2fde21f8cca21 (patch) | |
tree | 953b5c70cc968b523e42e7bf0594b8ac49216b9d /tox.ini | |
parent | 95efbbf0137de2f0e472ca12d60cfe242c01ec27 (diff) | |
parent | 0604a3a5fd1a64098cbdaf44bbb76b805c5233c0 (diff) | |
download | paste-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.ini | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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} |