We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb6b264 commit 964fceeCopy full SHA for 964fcee
.travis.yml
@@ -11,4 +11,4 @@ install:
11
script:
12
- pycodestyle .
13
- if [[ $TRAVIS_PYTHON_VERSION == 3.5 || $TRAVIS_PYTHON_VERSION == 3.6 || $TRAVIS_PYTHON_VERSION == 3.7 ]]; then flake8 . ; fi
14
- - python setup.py test
+ - python -Wd setup.py nosetests
setup.cfg
@@ -24,3 +24,8 @@ packages =
24
25
[bdist_wheel]
26
universal=1
27
+
28
+[nosetests]
29
+verbosity=2
30
+nocapture=1
31
+nologcapture=1
setup.py
@@ -3,7 +3,7 @@
3
4
5
setup(
6
- setup_requires=['pbr<=6.0.0'],
+ setup_requires=['pbr<=6.0.0', 'nose'],
7
pbr=True,
8
test_suite='nose.collector',
9
platforms=['any'],
0 commit comments