You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
424 B
20 lines
424 B
sudo: required |
|
dist: trusty |
|
language: python |
|
python: |
|
- "2.7_with_system_site_packages" |
|
before_install: |
|
- sudo apt-add-repository ppa:bitcoin/bitcoin -y |
|
- sudo apt-get update -q |
|
- sudo apt-get install --no-install-recommends --no-upgrade -qq bitcoind |
|
install: |
|
- ./install.sh |
|
before_script: |
|
- source jmvenv/bin/activate |
|
script: |
|
- ./test/run_tests.sh |
|
after_success: |
|
- coveralls |
|
branches: |
|
only: |
|
- test_travis
|
|
|