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 ea46121 commit 5b06b42Copy full SHA for 5b06b42
plugins/tutor-contrib-paragon/Makefile
@@ -22,12 +22,15 @@ isort: ## Sort imports. This target is not mandatory because the output may be
22
isort --skip=templates ${SRC_DIRS}
23
24
unittest: ## Run code tests cases
25
- pytest tests
+ pytest tests --ignore=tests/integration
26
+
27
+integration-test: ## Run integration tests cases
28
+ pytest tests/integration
29
30
dev-requirements: ## Install dev requirements
31
pip install -e .[dev]
32
-run-tests: test unittest # Run static analysis and unit tests
33
+run-tests: test unittest integration-test # Run all tests: static analysis, unit tests, and integration tests
34
35
ESCAPE =
36
help: ## Print this help
0 commit comments