Permalink
Switch branches/tags
Find file
Fetching contributors…
Cannot retrieve contributors at this time
executable file 12 lines (8 sloc) 244 Bytes
#!/bin/sh
set -efu
pys="$(pyversions -rv 2>/dev/null)"
cd "$ADTTMP"
for py in $pys; do
echo "=== python$py ==="
LC_ALL=C.UTF-8 xvfb-run --auto-servernum --server-args="-screen 0 1024x768x24" nosetests-$py -a '!network' -v pandas 2>&1
done