mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00
12 lines
213 B
Bash
Executable File
12 lines
213 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e -x
|
|
|
|
pip install --upgrade pip
|
|
pip install --upgrade tox
|
|
|
|
if [ "${TOXENV}" == "py34" ] || [ "${TOXENV}" == "py35" ]; then
|
|
sudo apt-get install rethinkdb
|
|
pip install --upgrade codecov
|
|
fi
|