bigchaindb/.ci/travis_script.sh
2016-12-13 10:25:47 +01:00

10 lines
116 B
Bash
Executable File

#!/bin/bash
set -e -x
if [[ -n ${TOXENV} ]]; then
tox -e ${TOXENV}
else
pytest -v -n auto --cov=bigchaindb
fi