Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .coveragerc

This file was deleted.

10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ for line in sys.stdin:
print("%-20s %s" % (target, help))
endef
export PRINT_HELP_PYSCRIPT
BROWSER := python -c "$$BROWSER_PYSCRIPT"
BROWSER := uv run python -c "$$BROWSER_PYSCRIPT"

help:
@python -c "$$PRINT_HELP_PYSCRIPT" < $(MAKEFILE_LIST)
Expand Down Expand Up @@ -63,10 +63,10 @@ test-all: ## run tests on every Python version with tox

check-all: test-all ## run tests on every Python version with tox

cov: install ## check code coverage quickly with the default Python
py.test --cov-config .coveragerc --cov=wolfcrypt tests
coverage report -m
coverage html
cov: ## check code coverage quickly with the default Python
uv run pytest --cov=wolfcrypt tests
uv run coverage report -m
uv run coverage html
$(BROWSER) htmlcov/index.html

docs: install ## generate Sphinx HTML documentation, including API docs
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ build-backend = "setuptools.build_meta:__legacy__"
dev = [
"mypy",
"pytest",
"pytest-cov",
"ruff",
"sphinx",
"sphinx-rtd-theme",
Expand Down
Loading