This commit is contained in:
2022-06-01 11:40:48 -05:00
parent 3fd252659e
commit 6cc253a903
15 changed files with 591 additions and 275 deletions

View File

@@ -2,7 +2,7 @@ PYTHON := python3
PYTEST := pytest
PIP := $(PYTHON) -m pip
MYPY := $(PYTHON) -m mypy
PYTEST_ARGS := -W ignore::DeprecationWarning -vv --log-level=DEBUG
PYTEST_ARGS := -W ignore::DeprecationWarning -vv --log-level=DEBUG tests
VERSION := 0.2
all: docs test
@@ -41,9 +41,9 @@ reformat:
$(PYTHON) -m black .
test:
rm -rf .mypy_cache
$(MYPY) -p miplearn
$(MYPY) -p tests
# rm -rf .mypy_cache
# $(MYPY) -p miplearn
# $(MYPY) -p tests
$(PYTEST) $(PYTEST_ARGS)
.PHONY: test test-watch docs install dist