Compare commits

...

1 Commits

Author SHA1 Message Date
xs5871
490e94e4e3
Add option to select specific unit test to Makefile 2023-02-15 09:13:09 +00:00
2 changed files with 4 additions and 2 deletions

View File

@ -92,7 +92,7 @@ test: lint unit-tests
.PHONY: unit-tests
unit-tests: devdeps
@$(PIPENV) run python3 -m unittest
@$(PIPENV) run python3 -m unittest ${TESTS}
reset-bootloader:
@echo "===> Rebooting your board to bootloader (safe to ignore file not found errors)"

View File

@ -27,7 +27,9 @@ to Black formatting as documented in `pyproject.toml`)
Unit tests within the `tests` folder mock various CircuitPython modules to allow
them to be executed in a desktop development environment.
Execute tests using the command `python -m unittest`.
Execute tests using the command `make unit-tests`. The `unit-tests` target
accepts an additional environment variable for selection of specific tests,
example `make unit-tests TESTS="tests.test_kmk_keys tests.test_layers"`.
## Contributing Documentation
While KMK welcomes documentation from anyone with and understanding of the issues