From 0cef2fdd82c2e335b6a5cf1feb764cbaaff66c0d Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Sun, 4 Nov 2018 05:22:57 -0500 Subject: [PATCH] install extras from github --- .travis.yml | 4 ++-- tox.ini | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 96e3f73d6..5c69d56af 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,7 +10,7 @@ jobs: name: "pylint lbrynet" install: - pip install pylint - - pip install git+https://github.com/lbryio/torba.git + - pip install git+https://github.com/lbryio/torba.git[server] - pip install -e .[wallet-server] script: pylint lbrynet @@ -19,7 +19,7 @@ jobs: name: "Unit Tests w/ Python 3.7" install: - pip install coverage - - pip install git+https://github.com/lbryio/torba.git + - pip install git+https://github.com/lbryio/torba.git[server] - pip install -e .[test] script: - HOME=/tmp coverage run -p --source=lbrynet -m unittest discover -v tests.unit.wallet diff --git a/tox.ini b/tox.ini index eb8aa7655..02cb1ef1d 100644 --- a/tox.ini +++ b/tox.ini @@ -9,7 +9,7 @@ extras = test changedir = {toxinidir}/tests setenv = HOME=/tmp - TORBA_LEDGER=lbrynet.wallet + TORBA_LEDGER=lbrynet.extras.wallet commands = orchstr8 download coverage run -p --source={envsitepackagesdir}/lbrynet -m unittest integration.wallet.test_transactions.BasicTransactionTest