Skip to content

Commit

Permalink
Pivot to pytest for better testing output, add mutmut for mutation te…
Browse files Browse the repository at this point in the history
…sting.
  • Loading branch information
alexdlaird committed Dec 5, 2024
1 parent 815f91b commit db847c6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ dist/
MANIFEST
*.egg-info
build
mutants/

pyngrok/bin
tests/.ngrok
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ test: install
@( \
source $(PROJECT_VENV)/bin/activate; \
python -m pip install ".[dev]"; \
coverage run -m unittest discover -v -b && coverage report && coverage xml && coverage html; \
coverage run -m pytest -v && coverage report && coverage xml && coverage html; \
)

docs: install
Expand Down
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ classifiers = [

[project.optional-dependencies]
dev = [
"pytest",
"coverage[toml]",
"mutmut",
"psutil",
"flake8",
"flake8-pyproject",
Expand Down

0 comments on commit db847c6

Please sign in to comment.