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.
MIPLearn/Makefile

10 lines
149 B

PYTEST_ARGS := -W ignore::DeprecationWarning -vv
test:
pytest $(PYTEST_ARGS)
test-watch:
pytest-watch -- $(PYTEST_ARGS)
.PHONY: test test-watch