Skip to content

Commit fd87c10

Browse files
committed
Make setup.py aware of nosetests
1 parent 17103f1 commit fd87c10

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

setup.cfg

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[nosetests]
2+
verbosity=3
3+
with-doctest=1

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,10 @@
4242
'umapi-client>=2',
4343
'psutil',
4444
],
45+
setup_requires=['nose>=1.0'],
4546
tests_require=[
4647
'mock',
47-
'nose',
48+
'nose>=1.0',
4849
],
4950
entry_points={
5051
'console_scripts': [

0 commit comments

Comments
 (0)