File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change 68
68
69
69
# make sure the desired locale is generated
70
70
if [ x" $LOCALE_OVERRIDE " != x" " ]; then
71
+ # piggyback this build for plotting tests. oh boy.
72
+ pip install $PIP_ARGS --use-mirrors matplotlib;
73
+
71
74
sudo locale-gen " $LOCALE_OVERRIDE "
72
75
fi
Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ if [ x"$LOCALE_OVERRIDE" != x"" ]; then
6
6
export LC_ALL=" $LOCALE_OVERRIDE " ;
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
+
10
+ # also do slow tests here, especially plotting
11
+ nosetests --exe -w /tmp -A " not network" pandas;
12
+ exit
9
13
fi
10
14
11
15
if [ x" $VBENCH " != x" true" ]; then
You can’t perform that action at this time.
0 commit comments