Skip to content

Commit 60a8575

Browse files
author
y-p
committed
BLD: shove the plotting tests into the LOCALE_OVERRIDE build
bad.
1 parent 1bd9cc7 commit 60a8575

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

ci/install.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,5 +68,8 @@ fi;
6868

6969
# make sure the desired locale is generated
7070
if [ x"$LOCALE_OVERRIDE" != x"" ]; then
71+
# piggyback this build for plotting tests. oh boy.
72+
pip install $PIP_ARGS --use-mirrors matplotlib;
73+
7174
sudo locale-gen "$LOCALE_OVERRIDE"
7275
fi

ci/script.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ if [ x"$LOCALE_OVERRIDE" != x"" ]; then
66
export LC_ALL="$LOCALE_OVERRIDE";
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"))')
9+
10+
# also do slow tests here, especially plotting
11+
nosetests --exe -w /tmp -A "not network" pandas;
12+
exit
913
fi
1014

1115
if [ x"$VBENCH" != x"true" ]; then

0 commit comments

Comments
 (0)