Skip to content

Commit d3face2

Browse files
committed
switch from nosetests to the builtin test runner
Just because it doesn't seem to currently use any feature of nosetest and this way we can reduce the dependencies by one. We'll feel free to switch it back to using nosetests (and add the dep to debian/control this time) if we want to use some extra feature of nose.
1 parent 16c5bac commit d3face2

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

setup.cfg

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +0,0 @@
1-
[aliases]
2-
test = nosetests

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,5 @@
2929
license = "MIT License",
3030
keywords="oauth",
3131
zip_safe = True,
32-
tests_require=['nose', 'coverage', 'mox'])
32+
test_suite="tests",
33+
tests_require=['coverage', 'mox'])

tests/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)