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:
|
||||
- HOME=/tmp coverage run -p --source=lbry -m unittest discover -vv tests.unit
|
||||
|
||||
- name: "Integration Tests"
|
||||
- name: "Integration Tests - Data Network"
|
||||
install:
|
||||
- pip install coverage tox-travis
|
||||
- pip install tox-travis
|
||||
- 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"
|
||||
install:
|
||||
|
|
Loading…
Reference in a new issue