Skip to content

Commit a7b5deb

Browse files
author
y-p
committed
BLD: more travis.yml cleanup
1 parent bc696a7 commit a7b5deb

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ env:
1111
matrix:
1212
include:
1313
- python: 2.7
14-
env: LOCALE_OVERRIDE="zh_CN.GB18030" # simplified chinese
14+
env: TEST_SLOW=true LOCALE_OVERRIDE="zh_CN.GB18030" # simplified chinese
1515
- python: 2.7
1616
env: FULL_DEPS=true
1717
- python: 3.2

ci/install.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ pip install $PIP_ARGS --use-mirrors cython nose python-dateutil pytz
1818

1919
if [ ${TRAVIS_PYTHON_VERSION} == "3.2" ]; then
2020
sudo apt-get $APT_ARGS install python3-numpy;
21-
elif [ ${TRAVIS_PYTHON_VERSION} == "3.3" ] || [ x"$LOCALE_OVERRIDE" != x"" ]; then # should be >=3,3
21+
elif [ ${TRAVIS_PYTHON_VERSION} == "3.3" ]; then # should be >=3,3
2222
pip $PIP_ARGS install numpy==1.7.0;
2323
else
2424
pip $PIP_ARGS install numpy==1.6.1;

ci/script.sh

+8-8
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@ if [ x"$LOCALE_OVERRIDE" != x"" ]; then
77
echo "Setting LC_ALL to $LOCALE_OVERRIDE"
88
(cd /; python -c 'import pandas; print("pandas detected console encoding: %s" % pandas.get_option("display.encoding"))')
99

10-
# also do slow tests here, especially plotting
11-
nosetests --exe -w /tmp -A "not network" pandas;
12-
exit
1310
fi
1411

15-
if [ x"$VBENCH" != x"true" ]; then
12+
if $TEST_SLOW ; then
13+
nosetests --exe -w /tmp -A "not network" pandas;
14+
exit
15+
else
1616
nosetests --exe -w /tmp -A "not slow" pandas;
1717
exit
1818
fi
1919

20-
if [ x"$VBENCH" == x"true" ]; then
21-
python vb_suite/perf_HEAD.py;
22-
exit
23-
fi
20+
# if [ x"$VBENCH" == x"true" ]; then
21+
# python vb_suite/perf_HEAD.py;
22+
# exit
23+
# fi

0 commit comments

Comments
 (0)