run all integration tests on travis until we drop it

This commit is contained in:
Lex Berezhny 2020-01-03 02:09:49 -05:00
parent 3488408b7a
commit 46c3f76edc

View file

@ -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: