adds 'make check' and 'make check-all' to Makefile

pull/1/head
Moisés Guimarães 2017-12-18 15:30:30 -03:00
parent 640041c285
commit 1a4496036b
1 changed files with 5 additions and 1 deletions

View File

@ -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