Add types to InternalSolver

This commit is contained in:
2021-01-20 10:07:28 -06:00
parent 69a82172b9
commit 1971389a57
10 changed files with 267 additions and 174 deletions

View File

@@ -1,6 +1,7 @@
PYTHON := python3
PYTEST := pytest
PIP := $(PYTHON) -m pip
MYPY := $(PYTHON) -m mypy
PYTEST_ARGS := -W ignore::DeprecationWarning -vv -x --log-level=DEBUG
VERSION := 0.2
@@ -38,6 +39,7 @@ reformat:
$(PYTHON) -m black .
test:
$(MYPY) -p miplearn
$(PYTEST) $(PYTEST_ARGS)
.PHONY: test test-watch docs install