Skip to content

Commit 97073c2

Browse files
committed
Makefile: rename test targets
1 parent 4450596 commit 97073c2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,14 @@ lint-mypy:
3434
pipenv run mypy src/enapter
3535

3636
.PHONY: test
37-
test: run-unit-tests run-integration-tests
37+
test: test-unit test-integration
3838

39-
.PHONY: run-unit-tests
40-
run-unit-tests:
39+
.PHONY: test-unit
40+
test-unit:
4141
pipenv run pytest -vv --cov --cov-report term-missing tests/unit
4242

43-
.PHONY: run-integration-tests
44-
run-integration-tests:
43+
.PHONY: test-integration
44+
test-integration:
4545
pipenv run pytest -vv --capture=no tests/integration
4646

4747
.PHONY: get-pipenv

0 commit comments

Comments
 (0)