Skip to content

Commit

Permalink
Add target for running tests quietly
Browse files Browse the repository at this point in the history
  • Loading branch information
JeremyMcCormick committed Jan 27, 2025
1 parent 67b94ef commit 88b567c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ help:
@echo " docs - Generate the documentation"
@echo " check - Run pre-commit checks"
@echo " test - Run tests"
@echo " test_q - Run tests quietly"
@echo " numpydoc - Check numpydoc style"
@echo " mypy - Run mypy static type checker"
@echo " all - Run all tasks"
Expand Down Expand Up @@ -36,6 +37,9 @@ check:
test:
@pytest -s --log-level DEBUG

test_q:
@pytest -q

numpydoc:
@python -m numpydoc.hooks.validate_docstrings $(shell find python -name "*.py" ! -name "cli.py")

Expand Down

0 comments on commit 88b567c

Please sign in to comment.