removed lbryschema references from scripts and copied lbryschema requirements into local setup.py
This commit is contained in:
parent
e46f0e2444
commit
65cfc1f63c
5 changed files with 4 additions and 10 deletions
|
@ -9,7 +9,7 @@
|
|||
|
||||
# Add files or directories to the blacklist. They should be base names, not
|
||||
# paths.
|
||||
ignore=CVS
|
||||
ignore=CVS,schema
|
||||
|
||||
# Add files or directories matching the regex patterns to the
|
||||
# blacklist. The regex matches against base names, not paths.
|
||||
|
|
|
@ -11,7 +11,6 @@ jobs:
|
|||
install:
|
||||
- pip install pylint
|
||||
- pip install git+https://github.com/lbryio/torba.git
|
||||
- pip install git+https://github.com/lbryio/lbryschema.git
|
||||
- pip install -e .
|
||||
script: pylint lbrynet
|
||||
|
||||
|
@ -20,7 +19,6 @@ jobs:
|
|||
name: "Unit Tests w/ Python 3.7"
|
||||
install:
|
||||
- pip install coverage
|
||||
- pip install git+https://github.com/lbryio/lbryschema.git
|
||||
- pip install git+https://github.com/lbryio/torba.git
|
||||
- pip install git+https://github.com/lbryio/lbryumx.git#latest_rebased
|
||||
- pip install -e .[test]
|
||||
|
@ -47,7 +45,6 @@ jobs:
|
|||
- name: "Integration Tests"
|
||||
install:
|
||||
- pip install tox-travis coverage
|
||||
- pushd .. && git clone https://github.com/lbryio/lbryschema.git && popd
|
||||
- pushd .. && git clone https://github.com/lbryio/torba.git && popd
|
||||
- pushd .. && git clone https://github.com/lbryio/lbryumx.git && cd lbryumx && git checkout latest_rebased && cd .. && popd
|
||||
script: tox
|
||||
|
@ -79,8 +76,6 @@ jobs:
|
|||
install:
|
||||
- pip3 install pyinstaller
|
||||
- pip3 install git+https://github.com/lbryio/torba.git
|
||||
- pip3 install git+https://github.com/lbryio/lbryschema.git
|
||||
- python scripts/set_build.py
|
||||
- pip3 install -e .
|
||||
script:
|
||||
- pyinstaller -F -n lbrynet lbrynet/cli.py
|
||||
|
|
|
@ -5,14 +5,12 @@ rm -rf /tmp/.wine-*
|
|||
apt-get -qq update
|
||||
apt-get -qq install -y git
|
||||
|
||||
git clone https://github.com/lbryio/lbryschema.git --depth 1
|
||||
git clone https://github.com/lbryio/torba.git --depth 1
|
||||
git clone https://github.com/twisted/twisted.git --depth 1 --branch twisted-18.7.0
|
||||
sed -i -e '172,184{s/^/#/}' twisted/src/twisted/python/_setup.py
|
||||
|
||||
pip install setuptools_scm
|
||||
cd twisted && pip install -e .[tls] && cd ..
|
||||
cd lbryschema && pip install -e . && cd ..
|
||||
cd torba && pip install -e . && cd ..
|
||||
|
||||
cd lbry
|
||||
|
|
4
setup.py
4
setup.py
|
@ -32,7 +32,9 @@ setup(
|
|||
'envparse',
|
||||
'jsonrpc',
|
||||
'cryptography',
|
||||
'lbryschema',
|
||||
'protobuf==3.2.0',
|
||||
'jsonschema',
|
||||
'ecdsa',
|
||||
'torba',
|
||||
'pyyaml',
|
||||
'requests',
|
||||
|
|
1
tox.ini
1
tox.ini
|
@ -5,7 +5,6 @@ envlist = py37-integration
|
|||
deps =
|
||||
coverage
|
||||
../torba[server]
|
||||
../lbryschema
|
||||
../lbryumx
|
||||
extras = test
|
||||
changedir = {toxinidir}/tests
|
||||
|
|
Loading…
Reference in a new issue