Skip to content

Commit 406e43b

Browse files
committed
Merge pull request #5072 from cpcloud/travis-nose-skipped
CI/ENH: use nose-show-skipped plugin to show skipped tests
2 parents 33516bb + d1d8bea commit 406e43b

File tree

3 files changed

+5
-53
lines changed

3 files changed

+5
-53
lines changed

ci/install.sh

+3
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@ if [ -n "$LOCALE_OVERRIDE" ]; then
3838
sudo locale-gen "$LOCALE_OVERRIDE"
3939
fi
4040

41+
42+
# show-skipped is working at this particular commit
43+
time pip install git+git://github.com/cpcloud/nose-show-skipped.git@fa4ff84e53c09247753a155b428c1bf2c69cb6c3
4144
time pip install $PIP_ARGS -r ci/requirements-${TRAVIS_PYTHON_VERSION}${JOB_TAG}.txt
4245
time sudo apt-get install libatlas-base-dev gfortran
4346

ci/print_skipped.py

-51
This file was deleted.

ci/script.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ if [ -n "$LOCALE_OVERRIDE" ]; then
99

1010
fi
1111

12-
echo nosetests --exe -w /tmp -A "$NOSE_ARGS" pandas --with-xunit --xunit-file=/tmp/nosetests.xml
13-
nosetests --exe -w /tmp -A "$NOSE_ARGS" pandas --with-xunit --xunit-file=/tmp/nosetests.xml
12+
echo nosetests --exe -w /tmp -A "$NOSE_ARGS" pandas --show-skipped
13+
nosetests --exe -w /tmp -A "$NOSE_ARGS" pandas --show-skipped

0 commit comments

Comments
 (0)