forked from LBRYCommunity/lbry-sdk
run all integration tests on travis until we drop it
This commit is contained in:
parent
3488408b7a
commit
46c3f76edc
1 changed files with 15 additions and 3 deletions
18
.travis.yml
18
.travis.yml
|
@ -18,11 +18,23 @@ jobs:
|
||||||
script:
|
script:
|
||||||
- HOME=/tmp coverage run -p --source=lbry -m unittest discover -vv tests.unit
|
- HOME=/tmp coverage run -p --source=lbry -m unittest discover -vv tests.unit
|
||||||
|
|
||||||
- name: "Integration Tests"
|
- name: "Integration Tests - Data Network"
|
||||||
install:
|
install:
|
||||||
- pip install coverage tox-travis
|
- pip install tox-travis
|
||||||
- sudo mount -o mode=1777,nosuid,nodev -t tmpfs tmpfs /tmp
|
- sudo mount -o mode=1777,nosuid,nodev -t tmpfs tmpfs /tmp
|
||||||
script: tox
|
script: tox -e datanetwork
|
||||||
|
|
||||||
|
- name: "Integration Tests - Blockchain"
|
||||||
|
install:
|
||||||
|
- pip install tox-travis
|
||||||
|
- sudo mount -o mode=1777,nosuid,nodev -t tmpfs tmpfs /tmp
|
||||||
|
script: tox -e blockchain
|
||||||
|
|
||||||
|
- name: "Integration Tests - Other"
|
||||||
|
install:
|
||||||
|
- pip install tox-travis
|
||||||
|
- sudo mount -o mode=1777,nosuid,nodev -t tmpfs tmpfs /tmp
|
||||||
|
script: tox -e other
|
||||||
|
|
||||||
- name: "Run Examples"
|
- name: "Run Examples"
|
||||||
install:
|
install:
|
||||||
|
|
Loading…
Reference in a new issue