diff options
| author | Terence Honles <terence@honles.com> | 2019-11-22 19:58:55 -0800 |
|---|---|---|
| committer | Inada Naoki <songofacandy@gmail.com> | 2019-11-23 12:58:55 +0900 |
| commit | b458e9a6a2cf69e483fa5994d227382c6a01f3c4 (patch) | |
| tree | 1781cff4cf84cb4c67bb7434c94f66c78e54154a /docker/runtests.sh | |
| parent | 997b524f06176aaa6bd255a046a8746e99b4f87d (diff) | |
| download | msgpack-python-b458e9a6a2cf69e483fa5994d227382c6a01f3c4.tar.gz | |
update for Python 3.8 (#374)
Diffstat (limited to 'docker/runtests.sh')
| -rwxr-xr-x | docker/runtests.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/docker/runtests.sh b/docker/runtests.sh index c6bbf60..fa7e979 100755 --- a/docker/runtests.sh +++ b/docker/runtests.sh @@ -1,7 +1,10 @@ #!/bin/bash +DOCKER_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" +source "$DOCKER_DIR/shared.env" + set -e -x -for V in cp36-cp36m cp35-cp35m cp27-cp27m cp27-cp27mu; do +for V in "${PYTHON_VERSIONS[@]}"; do PYBIN=/opt/python/$V/bin $PYBIN/python setup.py install rm -rf build/ # Avoid lib build by narrow Python is used by wide python |
