File tree Expand file tree Collapse file tree 2 files changed +19
-0
lines changed
Expand file tree Collapse file tree 2 files changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ matrix:
2222 - LOCALE_OVERRIDE="it_IT.UTF-8"
2323 - BUILD_TYPE=conda
2424 - JOB_NAME : " 26_nslow_nnet"
25+ - INSTALL_TEST=true
2526 - python : 2.7
2627 env :
2728 - NOSE_ARGS="slow and not network and not disabled"
@@ -183,6 +184,7 @@ script:
183184# nothing here, or failed tests won't fail travis
184185
185186after_script :
187+ - ci/install_test.sh
186188 - if [ -f /tmp/doc.log ]; then cat /tmp/doc.log; fi
187189 - source activate pandas && ci/print_versions.py
188190 - ci/print_skipped.py /tmp/nosetests.xml
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ echo " inside $0 "
4+
5+ if [ " $INSTALL_TEST " ]; then
6+ source activate pandas
7+ echo " Starting installation test."
8+ conda uninstall cython || exit 1
9+ python " $TRAVIS_BUILD_DIR " /setup.py sdist --formats=zip,gztar || exit 1
10+ pip install " $TRAVIS_BUILD_DIR " /dist/* tar.gz || exit 1
11+ nosetests --exe -A " $NOSE_ARGS " pandas/tests/test_series.py --with-xunit --xunit-file=/tmp/nosetests_install.xml
12+ else
13+ echo " Skipping installation test."
14+ fi
15+ RET=" $? "
16+
17+ exit " $RET "
You can’t perform that action at this time.
0 commit comments