File tree 3 files changed +10
-10
lines changed
3 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 11
11
matrix :
12
12
include :
13
13
- python : 2.7
14
- env : LOCALE_OVERRIDE="zh_CN.GB18030" # simplified chinese
14
+ env : TEST_SLOW=true LOCALE_OVERRIDE="zh_CN.GB18030" # simplified chinese
15
15
- python : 2.7
16
16
env : FULL_DEPS=true
17
17
- python : 3.2
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ pip install $PIP_ARGS --use-mirrors cython nose python-dateutil pytz
18
18
19
19
if [ ${TRAVIS_PYTHON_VERSION} == " 3.2" ]; then
20
20
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
22
22
pip $PIP_ARGS install numpy==1.7.0;
23
23
else
24
24
pip $PIP_ARGS install numpy==1.6.1;
Original file line number Diff line number Diff line change @@ -7,17 +7,17 @@ if [ x"$LOCALE_OVERRIDE" != x"" ]; then
7
7
echo " Setting LC_ALL to $LOCALE_OVERRIDE "
8
8
(cd /; python -c ' import pandas; print("pandas detected console encoding: %s" % pandas.get_option("display.encoding"))' )
9
9
10
- # also do slow tests here, especially plotting
11
- nosetests --exe -w /tmp -A " not network" pandas;
12
- exit
13
10
fi
14
11
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
16
16
nosetests --exe -w /tmp -A " not slow" pandas;
17
17
exit
18
18
fi
19
19
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
You can’t perform that action at this time.
0 commit comments