summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorJames Socol <me@jamessocol.com>2022-11-05 17:21:32 -0400
committerJames Socol <me@jamessocol.com>2022-11-05 17:21:32 -0400
commitb00f0db002fc85e3702da9427ac13ba0df2f124a (patch)
treea4c82354477a40b2d49f96fdc80a6d500c5579e7 /tox.ini
parent0bd1a158849f7307f1ee3be0e9c0addecf74520b (diff)
downloadpystatsd-b00f0db002fc85e3702da9427ac13ba0df2f124a.tar.gz
Replace nose with nose2
Nose stopped getting updates around 2015. Nose2 is is the continued evolution of that project. Ultimately, this library's test suite is simple enough to move toward pure unittest, but that will require a larger refactor to wrap everything in unittest.TestCase.
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini5
1 files changed, 2 insertions, 3 deletions
diff --git a/tox.ini b/tox.ini
index 32136cf..06d6d59 100644
--- a/tox.ini
+++ b/tox.ini
@@ -3,9 +3,8 @@ envlist = py37,py38,py39,py310,py311,pypy3
[testenv]
deps=
- mock
- nose
+ nose2
coverage
commands=
- nosetests statsd --with-coverage --cover-package=statsd []
+ nose2 statsd --with-coverage