electrumx/.travis.yml
Johann Bauer 1c972d9592 Only test on stable Python (#380)
Since tests on nightly are quite likely to fail anyway, it doesn't make too much sense  to test there.
2018-02-22 07:17:23 +08:00

21 lines
562 B
YAML

sudo: required
dist: trusty
language: python
before_install:
- sudo add-apt-repository -y ppa:giskou/librocksdb
- sudo apt-get -qq update
- sudo apt-get install -yq libleveldb-dev librocksdb libsnappy-dev zlib1g-dev libbz2-dev libgflags-dev
python:
- "3.6"
# command to install dependencies
install:
- pip install aiohttp
- pip install ecdsa
- pip install plyvel
- pip install pyrocksdb
- pip install pytest-cov
- pip install python-coveralls
# command to run tests
script: pytest --cov=server --cov=lib --cov=wallet
after_success: coveralls