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 8860dc016a Remove vendored test support, as it's never worked
Since de-vendoring support exists only for downstream, and they need
to patch pip to get that support anyways, it seems reasonable to push
support for testing that configuration onto them. This is something
they need to do anyways, since they need to test their versions of the
vendored libraries.

See https://github.com/pypa/pip/pull/4657 for more information.
2017-08-31 14:53:00 -04:00

14 lines
200 B
Bash
Executable file

#!/bin/bash
set -e
set -x
if [[ $TOXENV == py* ]]; then
# Run unit tests
tox -- -m unit
# Run integration tests
tox -- -m integration -n 4 --duration=5
else
# Run once
tox
fi