summaryrefslogtreecommitdiff
path: root/.travis/run.sh
diff options
context:
space:
mode:
Diffstat (limited to '.travis/run.sh')
-rwxr-xr-x.travis/run.sh26
1 files changed, 0 insertions, 26 deletions
diff --git a/.travis/run.sh b/.travis/run.sh
deleted file mode 100755
index c3fa89c..0000000
--- a/.travis/run.sh
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/bin/bash
-
-set -e
-set -x
-
-if [[ $TRAVIS_OS_NAME == 'osx' ]]; then
- PYENV_ROOT="$HOME/.pyenv-simplejson"
- PATH="$PYENV_ROOT/bin:$PATH"
- hash -r
- eval "$(pyenv init -)"
-fi
-REQUIRE_SPEEDUPS=1 python setup.py build_ext -i
-python -m compileall -f .
-python setup.py test
-
-if [[ $TRAVIS_OS_NAME == 'osx' ]]; then
- python setup.py bdist_wheel
-fi
-
-if [[ $BUILD_WHEEL == 'true' ]]; then
- cibuildwheel --output-dir dist
-fi
-
-if [[ $BUILD_SDIST == 'true' ]]; then
- python setup.py sdist
-fi