This should speed it up a bit, as brew will download a pre-compiled "bottle", whereas pyenv compiles python from source. The current 'python3' formula on homebrew is 3.6.0, so let's use that.
11 lines
106 B
Bash
Executable File
11 lines
106 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
set -x
|
|
|
|
if [ "$TRAVIS_OS_NAME" == "osx" ]; then
|
|
source .venv/bin/activate
|
|
fi
|
|
|
|
tox
|