You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
PYTEST_ARGS := -W ignore::DeprecationWarning -vv -x
|
|
|
|
all: docs test
|
|
|
|
docs:
|
|
mkdocs build
|
|
|
|
test:
|
|
pytest $(PYTEST_ARGS)
|
|
|
|
test-watch:
|
|
pytest-watch -- $(PYTEST_ARGS)
|
|
|
|
.PHONY: test test-watch docs
|