torba integration test
This commit is contained in:
parent
b1e70723c7
commit
d4b006656d
18 changed files with 14 additions and 9 deletions
23
.travis.yml
23
.travis.yml
|
@ -24,7 +24,16 @@ jobs:
|
||||||
- coverage combine lbry/
|
- coverage combine lbry/
|
||||||
- bash <(curl -s https://codecov.io/bash)
|
- bash <(curl -s https://codecov.io/bash)
|
||||||
|
|
||||||
- name: "Torba Unit Tests"
|
- name: "LBRY Integration Tests"
|
||||||
|
install:
|
||||||
|
- pip install coverage tox-travis
|
||||||
|
script: cd lbry && tox
|
||||||
|
after_success:
|
||||||
|
- coverage combine lbry
|
||||||
|
- bash <(curl -s https://codecov.io/bash)
|
||||||
|
|
||||||
|
- &torba-tests
|
||||||
|
name: "Torba Unit Tests"
|
||||||
env: TESTTYPE=unit
|
env: TESTTYPE=unit
|
||||||
install:
|
install:
|
||||||
- pip install coverage tox-travis
|
- pip install coverage tox-travis
|
||||||
|
@ -33,13 +42,9 @@ jobs:
|
||||||
- coverage combine torba/tests
|
- coverage combine torba/tests
|
||||||
- bash <(curl -s https://codecov.io/bash)
|
- bash <(curl -s https://codecov.io/bash)
|
||||||
|
|
||||||
- name: "LBRY Integration Tests"
|
- <<: *torba-tests
|
||||||
install:
|
name: "Torba Integration Tests"
|
||||||
- pip install coverage tox-travis
|
env: TESTTYPE=integration
|
||||||
script: cd lbry && tox
|
|
||||||
after_success:
|
|
||||||
- coverage combine lbry
|
|
||||||
- bash <(curl -s https://codecov.io/bash)
|
|
||||||
|
|
||||||
- name: "Run Examples"
|
- name: "Run Examples"
|
||||||
install:
|
install:
|
||||||
|
@ -59,7 +64,7 @@ jobs:
|
||||||
install:
|
install:
|
||||||
- docker pull lbry/pyinstaller34_32bits:py371
|
- docker pull lbry/pyinstaller34_32bits:py371
|
||||||
script:
|
script:
|
||||||
- python scripts/set_build.py
|
- cd lbry && python scripts/set_build.py
|
||||||
- docker run -v "$(pwd):/src/lbry" lbry/pyinstaller34_32bits:py371 lbry/scripts/wine_build.sh
|
- docker run -v "$(pwd):/src/lbry" lbry/pyinstaller34_32bits:py371 lbry/scripts/wine_build.sh
|
||||||
- sudo zip -j dist/lbrynet-windows.zip dist/lbrynet.exe
|
- sudo zip -j dist/lbrynet-windows.zip dist/lbrynet.exe
|
||||||
deploy:
|
deploy:
|
||||||
|
|
Loading…
Reference in a new issue