run.sh 224 Bytes Edit 1 2 3 4 5 6 7 8 9 10 11 12 13 #!/bin/bash set -e set -x if [[ "$(uname -s)" == "Darwin" ]]; then PYENV_ROOT="$HOME/.pyenv" PATH="$PYENV_ROOT/bin:$PATH" eval "$(pyenv init -)" source ~/.venv/bin/activate fi python -m pytest -n16 tests/