summaryrefslogtreecommitdiff
path: root/.travis/run.sh
blob: 3c1a21906d88eea65b6828ac90b76a19e1fc9619 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/bash

set -e
set -x

if [[ -n "$PYENV_VERSION" ]]; then
    PYENV_ROOT="$HOME/.pyenv-xattr"
    PATH="$PYENV_ROOT/bin:$PATH"
    hash -r
    eval "$(pyenv init -)"
fi

python setup.py build_ext -i
python -m compileall -f .
python setup.py test

if [[ -n "$PYENV_VERSION" && $TRAVIS_OS_NAME == 'osx' ]]; then
  python setup.py bdist_wheel
fi