2016-04-15 10:19:22 +01:00

14 lines
247 B
Bash
Executable File

#!/bin/bash
set -e
set -x
if [[ "$(uname -s)" == "Darwin" || "${TOXENV}" == "pypy" || "${TOXENV}" == "jython" ]]; then
PYENV_ROOT="$HOME/.pyenv"
PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init -)"
fi
source ~/.venv/bin/activate
tox