1
0
mirror of https://github.com/bigchaindb/bigchaindb.git synced 2024-06-10 20:05:02 +02:00
bigchaindb/.ci/travis-install.sh
2016-12-13 10:25:47 +01:00

13 lines
178 B
Bash
Executable File

#!/bin/bash
set -e -x
pip install --upgrade pip
if [[ -n ${TOXENV} ]]; then
pip install --upgrade tox
else
pip install -e .[test]
pip install --upgrade codecov
fi