bigchaindb/.travis.yml

26 lines
598 B
YAML
Raw Normal View History

2016-02-10 20:16:50 +01:00
sudo: required
2016-02-10 19:55:33 +01:00
language: python
2016-10-18 03:58:17 +02:00
cache: pip
python:
- 3.4
- 3.5
2016-02-10 19:55:33 +01:00
2016-02-10 20:16:50 +01:00
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]
2016-02-10 20:16:50 +01:00
- pip install codecov
2016-02-10 19:55:33 +01:00
before_script:
- flake8 --max-line-length 119 bigchaindb/
- rethinkdb --daemon
2016-07-19 17:51:42 +02:00
script: py.test -n auto -s -v --cov=bigchaindb
2016-02-10 19:55:33 +01:00
2016-02-10 20:16:50 +01:00
after_success: codecov