mirror of
https://github.com/ANL-CEEESA/MIPLearn.git
synced 2025-12-06 01:18:52 -06:00
10 lines
162 B
Makefile
10 lines
162 B
Makefile
PYTEST_ARGS := -W ignore::DeprecationWarning --capture=no -vv
|
|
|
|
test:
|
|
pytest $(PYTEST_ARGS)
|
|
|
|
test-watch:
|
|
pytest-watch -- $(PYTEST_ARGS)
|
|
|
|
.PHONY: test test-watch
|