File tree 2 files changed +6
-11
lines changed
2 files changed +6
-11
lines changed Original file line number Diff line number Diff line change @@ -6,16 +6,16 @@ python:
6
6
7
7
env :
8
8
global :
9
- - # need at least this so travis page will show env column
9
+ - NOSE_ARGS="not slow" # need at least this so travis page will show env column
10
10
11
11
matrix :
12
12
include :
13
13
- python : 2.7
14
- env : TEST_SLOW=true LOCALE_OVERRIDE="zh_CN.GB18030" # simplified chinese
14
+ env : NOSE_ARGS="not network" LOCALE_OVERRIDE="zh_CN.GB18030"
15
15
- python : 2.7
16
- env : FULL_DEPS=true
16
+ env : NOSE_ARGS="not slow" FULL_DEPS=true
17
17
- python : 3.2
18
- env : FULL_DEPS=true
18
+ env : NOSE_ARGS="not slow" FULL_DEPS=true
19
19
20
20
# allow importing from site-packages,
21
21
# so apt-get python-x works for system pythons
Original file line number Diff line number Diff line change @@ -9,13 +9,8 @@ if [ x"$LOCALE_OVERRIDE" != x"" ]; then
9
9
10
10
fi
11
11
12
- if $TEST_SLOW ; then
13
- nosetests --exe -w /tmp -A " not network" pandas;
14
- exit
15
- else
16
- nosetests --exe -w /tmp -A " not slow" pandas;
17
- exit
18
- fi
12
+ echo nosetests --exe -w /tmp -A " $NOSE_ARGS " pandas;
13
+ nosetests --exe -w /tmp -A " $NOSE_ARGS " pandas;
19
14
20
15
# if [ x"$VBENCH" == x"true" ]; then
21
16
# python vb_suite/perf_HEAD.py;
You can’t perform that action at this time.
0 commit comments