From 65c86c0c1fd3d37792108c60e2a1a864d5e5bb97 Mon Sep 17 00:00:00 2001 From: Sam Bull Date: Sat, 8 Jan 2022 17:32:36 +0000 Subject: [PATCH] Cleanup Makefile (#406) --- Makefile | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) diff --git a/Makefile b/Makefile index 542fcba6..76cbddb7 100644 --- a/Makefile +++ b/Makefile @@ -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 @@ -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: