mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00
13 lines
175 B
Bash
Executable File
13 lines
175 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e -x
|
|
|
|
pip install --upgrade pip
|
|
|
|
if [[ -n ${TOXENV} ]]; then
|
|
pip install --upgrade tox
|
|
else
|
|
pip install .[test]
|
|
pip install --upgrade codecov
|
|
fi
|