Skip to content

Commit 09a4f10

Browse files
committed
Minor improvements in Makefile
1 parent c52d99f commit 09a4f10

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

Makefile

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.PHONY: all clean tests stress-tests coverage test_coverage install lint docs dist check_formatting
1+
.PHONY: clean tests stress-tests test_coverage install lint docs dist check_formatting
22

33
PYTHON=python3
44
PYLINT=pylint
@@ -17,15 +17,13 @@ clean:
1717
rm -rf dist
1818
rm -rf htmlcov
1919

20-
coverage: test_coverage
21-
2220
test_coverage: check_formatting
23-
-$(PYTESTS) --cov=superannotate -n auto
21+
-$(PYTESTS) --cov=superannotate -n auto tests
2422
$(COVERAGE) html
2523
@echo "\033[95m\n\nCoverage successful! View the output at file://htmlcov/index.html.\n\033[0m"
2624

2725
install:
28-
pip install .
26+
pip install -e .
2927

3028
lint: check_formatting
3129
-$(PYLINT) --output-format=json superannotate/ | pylint-json2html -o pylint.html

0 commit comments

Comments
 (0)