Skip to content

Commit 5b06b42

Browse files
committed
feat(tests): update Makefile to include integration tests
1 parent ea46121 commit 5b06b42

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

plugins/tutor-contrib-paragon/Makefile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,15 @@ isort: ## Sort imports. This target is not mandatory because the output may be
2222
isort --skip=templates ${SRC_DIRS}
2323

2424
unittest: ## Run code tests cases
25-
pytest tests
25+
pytest tests --ignore=tests/integration
26+
27+
integration-test: ## Run integration tests cases
28+
pytest tests/integration
2629

2730
dev-requirements: ## Install dev requirements
2831
pip install -e .[dev]
2932

30-
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
3134

3235
ESCAPE = 
3336
help: ## Print this help

0 commit comments

Comments
 (0)