summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorSebastian Thiel <sebastian.thiel@icloud.com>2021-10-15 21:16:38 +0800
committerGitHub <noreply@github.com>2021-10-15 21:16:38 +0800
commitf2f2eb6ee9a406bfaa5f8be927ad8ab8367cdbb0 (patch)
tree5312af0e01b555429690efa30a2763c4aa2d5df2 /tox.ini
parent30e93fee57286afae25c28a97ba65a9770f9a729 (diff)
parentf0b322afcf6934501bade7776c5331619485a06c (diff)
downloadsmmap-f2f2eb6ee9a406bfaa5f8be927ad8ab8367cdbb0.tar.gz
Merge pull request #46 from hugovk/master
Add support for Python 3.10, drop EOL 3.5
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini8
1 files changed, 4 insertions, 4 deletions
diff --git a/tox.ini b/tox.ini
index e33f567..c34ab02 100644
--- a/tox.ini
+++ b/tox.ini
@@ -4,13 +4,13 @@
# and then run "tox" from this directory.
[tox]
-envlist = flake8, py35, py36, py37, py38, py39
+envlist = flake8, py36, py37, py38, py39, py310
[testenv]
-commands = nosetests {posargs:--with-coverage --cover-package=smmap}
+commands = {envpython} -m pytest --cov smmap --cov-report xml {posargs}
deps =
- nose
- nosexcover
+ pytest
+ pytest-cov
[testenv:flake8]
commands = flake8 {posargs}