Skip to content

Commit

Permalink
Cleanup Makefile (#406)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dreamsorcerer authored Jan 8, 2022
1 parent d3888fc commit 65c86c0
Showing 1 changed file with 2 additions and 14 deletions.
16 changes: 2 additions & 14 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
install:
pip install -U setuptools pip
pip install -e .
pip install -r tests/requirements.txt
pip install -r requirements-dev.txt
grablib

.PHONY: lint
Expand All @@ -13,20 +13,8 @@ lint:
mypy
flake8

.PHONY: test
test:
pytest --cov=aiohttp_devtools --boxed --duration 5 && (coverage combine || test 0)

.PHONY: testcov
testfast:
pytest --cov=aiohttp_devtools --boxed --fast -n 4 && (echo "building coverage html"; coverage combine; coverage html)

.PHONY: testcov
testcov:
pytest --cov=aiohttp_devtools --boxed && (echo "building coverage html"; coverage combine; coverage html)

.PHONY: all
all: testcov lint
all: lint

.PHONY: clean
clean:
Expand Down

0 comments on commit 65c86c0

Please sign in to comment.