Skip to content

Commit

Permalink
Merge 6ad0753 into 0021643
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffLIrion committed Sep 8, 2019
2 parents 0021643 + 6ad0753 commit 3a4780a
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion Makefile
Expand Up @@ -11,6 +11,22 @@ docs:
@cd docs && sphinx-apidoc -f -e -o source/ ../androidtv/
@cd docs && make html && make html

.PHONY: test
test:
python setup.py test

.PHONY: coverage
coverage:
coverage run --source androidtv setup.py test && coverage html && coverage report
coverage run --source androidtv setup.py test && coverage html && coverage report -m

.PHONY: tdd
tdd:
coverage run --source androidtv setup.py test && coverage report -m

.PHONY: lint
lint:
flake8 androidtv/ && pylint androidtv/

.PHONY: alltests
alltests:
flake8 androidtv/ && pylint androidtv/ && coverage run --source androidtv setup.py test && coverage report -m

0 comments on commit 3a4780a

Please sign in to comment.