We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4450596 commit 97073c2Copy full SHA for 97073c2
Makefile
@@ -34,14 +34,14 @@ lint-mypy:
34
pipenv run mypy src/enapter
35
36
.PHONY: test
37
-test: run-unit-tests run-integration-tests
+test: test-unit test-integration
38
39
-.PHONY: run-unit-tests
40
-run-unit-tests:
+.PHONY: test-unit
+test-unit:
41
pipenv run pytest -vv --cov --cov-report term-missing tests/unit
42
43
-.PHONY: run-integration-tests
44
-run-integration-tests:
+.PHONY: test-integration
+test-integration:
45
pipenv run pytest -vv --capture=no tests/integration
46
47
.PHONY: get-pipenv
0 commit comments