Reorganize directories

This commit is contained in:
2020-03-05 17:58:56 -06:00
parent 37795fe013
commit 7765d1f822
50 changed files with 168 additions and 11 deletions

View File

@@ -2,13 +2,24 @@ PYTEST_ARGS := -W ignore::DeprecationWarning -vv -x --log-level=DEBUG
all: docs test
develop:
cd src/python && python setup.py develop
julia --project=src/julia -e "using Pkg; Pkg.instantiate()"
install:
cd src/python && python setup.py install
julia --project=src/julia -e "using Pkg; Pkg.instantiate()"
uninstall:
pip uninstall miplearn
docs:
mkdocs build
test:
pytest $(PYTEST_ARGS)
cd src/python && pytest $(PYTEST_ARGS)
test-watch:
pytest-watch -- $(PYTEST_ARGS)
cd src/python && pytest-watch -- $(PYTEST_ARGS)
.PHONY: test test-watch docs