From 923ed80fcf0c19970b280d76d50afe3fe1dbfd31 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Fri, 27 Jul 2018 17:56:13 -0400 Subject: [PATCH] run DHT tests as their own job --- .travis.yml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 72c221f38..2aed33da7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -23,7 +23,19 @@ jobs: - pip install git+https://github.com/lbryio/torba.git - pip install git+https://github.com/lbryio/lbryschema.git - pip install -e .[test] - script: HOME=/tmp coverage run --source=lbrynet -m twisted.trial tests.unit tests.functional.dht + script: HOME=/tmp coverage run --source=lbrynet -m twisted.trial tests.unit + #script: HOME=/tmp coverage run --source=lbrynet -m twisted.trial tests.functional tests.unit + after_success: + - bash <(curl -s https://codecov.io/bash) + + - stage: test + name: "DHT Tests" + install: + - pip install coverage + - pip install git+https://github.com/lbryio/torba.git + - pip install git+https://github.com/lbryio/lbryschema.git + - pip install -e .[test] + script: HOME=/tmp coverage run --source=lbrynet -m twisted.trial tests.functional.dht #script: HOME=/tmp coverage run --source=lbrynet -m twisted.trial tests.functional tests.unit after_success: - bash <(curl -s https://codecov.io/bash)