From 7e9760d7210fa353cd09dcd55635dc79fe1a0dc8 Mon Sep 17 00:00:00 2001 From: Will Dean Date: Sat, 26 Oct 2024 12:16:41 -0400 Subject: [PATCH] dummy change --- Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Makefile b/Makefile index 1891ade..c06e624 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,14 @@ .PHONY: test cov format html +.DEFAULT_GOAL := help + +help: + @echo "test-generate-baseline: generate baseline images for tests" + @echo "test: run tests" + @echo "cov: run tests and generate coverage report" + @echo "format: run pre-commit hooks" + @echo "html: serve documentation" + test-generate-baseline: poetry run pytest --mpl-generate-path=tests/example-plots tests/test_example_plots.py