1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00
pip/.travis/run.sh
Donald Stufft 7e733044af Remove OSX from our build matrix
The Travis OSX builders are incredibly inconsistent for how long
they take to run our test suite. It is currently ranging anywhere
from ~15 minutes to well beyond 50 minutes, at which point it
times out.
2014-05-08 14:24:50 -04:00

16 lines
245 B
Bash
Executable file

#!/bin/bash
set -e
set -x
# This is required in order to get UTF-8 output inside of the subprocesses that
# our tests use.
export LC_CTYPE=en_US.UTF-8
case $TOXENV in
py32)
tox
;;
*)
tox -- -n 8
;;
esac