From 46c3f76edc32262b7c81d1d2b73731e4af05e60b Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Fri, 3 Jan 2020 02:09:49 -0500 Subject: [PATCH] run all integration tests on travis until we drop it --- .travis.yml | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index abc8e6341..8c57abc2f 100644 --- a/.travis.yml +++ b/.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: