Revert "run tests using make"

This reverts commit 77a51d1ad4.
This commit is contained in:
Alex Grintsvayg 2021-04-21 11:41:16 -04:00
parent 77a51d1ad4
commit 85034b382e
No known key found for this signature in database
GPG key ID: AEB3F089F86A22B5
2 changed files with 3 additions and 11 deletions

View file

@ -25,7 +25,7 @@ jobs:
- working-directory: lbry
env:
HOME: /tmp
run: make test-unit-coverage
run: coverage run -p --source=lbry -m unittest discover -vv tests.unit
tests-integration:
name: "tests / integration"

View file

@ -1,4 +1,4 @@
.PHONY: install tools lint test test-unit test-unit-coverage test-integration idea
.PHONY: install tools lint test idea
install:
pip install https://s3.amazonaws.com/files.lbry.io/python_libtorrent-1.2.4-py3-none-any.whl
@ -16,15 +16,7 @@ lint:
pylint --rcfile=setup.cfg lbry
#mypy --ignore-missing-imports lbry
test: test-unit test-integration
test-unit:
python -m unittest discover tests.unit
test-unit-coverage:
coverage run -p --source=lbry -m unittest discover -vv tests.unit
test-integration:
test:
tox
idea: