Skip to content

Commit

Permalink
[GH-90] add local build recipes
Browse files Browse the repository at this point in the history
  • Loading branch information
Elton Law committed Sep 29, 2019
1 parent 85f088c commit 5598cba
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,19 @@ DOCKER_ID_USER=eltonlaw

.PHONY: all build test upload install docs

all: test
all: test-local

install-local:
cd $(IMPYUTE_ROOT) && python setup.py develop

uninstall-local:
cd $(IMPYUTE_ROOT) && python setup.py develop --uninstall

test-local:
cd $(IMPYUTE_ROOT) && pytest

clean:
find . -type f -name '*.pyc' -delete

rebuild-pybase:
docker rmi -f $(DOCKER_ID_USER)/pybase
Expand Down

0 comments on commit 5598cba

Please sign in to comment.