mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00
23 lines
531 B
YAML
23 lines
531 B
YAML
sudo: required
|
|
language: python
|
|
python:
|
|
- 3.4
|
|
- 3.5
|
|
|
|
before_install:
|
|
- source /etc/lsb-release
|
|
- echo "deb http://download.rethinkdb.com/apt $DISTRIB_CODENAME main" | sudo tee -a /etc/apt/sources.list.d/rethinkdb.list
|
|
- wget -qO- https://download.rethinkdb.com/apt/pubkey.gpg | sudo apt-key add -
|
|
- sudo apt-get update -qq
|
|
|
|
install:
|
|
- sudo apt-get install rethinkdb
|
|
- pip install -e .[test]
|
|
- pip install codecov
|
|
|
|
before_script: rethinkdb --daemon
|
|
|
|
script: py.test -n8 -v --cov=bigchaindb
|
|
|
|
after_success: codecov
|