adds 'make check' and 'make check-all' to Makefile
parent
640041c285
commit
1a4496036b
6
Makefile
6
Makefile
|
@ -51,11 +51,15 @@ lint: ## check style with flake8
|
|||
flake8 wolfcrypt tests
|
||||
|
||||
test: ## run tests quickly with the default Python
|
||||
py.test
|
||||
py.test tests
|
||||
|
||||
check: test ## run tests quickly with the default Python
|
||||
|
||||
test-all: ## run tests on every Python version with tox
|
||||
tox
|
||||
|
||||
check-all: ## run tests on every Python version with tox
|
||||
|
||||
coverage: ## check code coverage quickly with the default Python
|
||||
coverage run --source wolfcrypt -m pytest
|
||||
coverage report -m
|
||||
|
|
Loading…
Reference in New Issue