File tree 2 files changed +19
-0
lines changed
2 files changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ matrix:
22
22
- LOCALE_OVERRIDE="it_IT.UTF-8"
23
23
- BUILD_TYPE=conda
24
24
- JOB_NAME : " 26_nslow_nnet"
25
+ - INSTALL_TEST=true
25
26
- python : 2.7
26
27
env :
27
28
- NOSE_ARGS="slow and not network and not disabled"
@@ -183,6 +184,7 @@ script:
183
184
# nothing here, or failed tests won't fail travis
184
185
185
186
after_script :
187
+ - ci/install_test.sh
186
188
- if [ -f /tmp/doc.log ]; then cat /tmp/doc.log; fi
187
189
- source activate pandas && ci/print_versions.py
188
190
- 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