Skip to content

Commit 25a13b5

Browse files
[travis] Show all test statuses in nosetests
This shows us which tests are passed, failing, or - most importantly - have been skipped in Travis. The extra verbosity is intentionally not propogated to local `tox` invocations as it is easy for local users to add in.
1 parent 1f9115f commit 25a13b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.travis.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ F8_PY=$?
99
flake8 gssapi --filename='*.pyx,*.pxd' --ignore=E225,E226,E227,E901,E402
1010
F8_MAIN_CYTHON=$?
1111

12-
python setup.py nosetests
12+
python setup.py nosetests --verbosity=3
1313
TEST_RES=$?
1414

1515
if [ $F8_SETUP -eq 0 -a $F8_PY -eq 0 -a $F8_MAIN_CYTHON -eq 0 -a $TEST_RES -eq 0 ]; then

0 commit comments

Comments
 (0)