Skip to content

Commit 1c06cc8

Browse files
committed
update MAKEFILE
1 parent 0d52980 commit 1c06cc8

File tree

1 file changed

+19
-2
lines changed

1 file changed

+19
-2
lines changed

Makefile

+19-2
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,31 @@ ARCH := $(shell uname -m)
66
# Install #
77
###########
88

9-
test-install:
9+
.PHONY: install-test
10+
pip install pytest
1011
pip install requests_mock
1112

13+
.PHONY: install-dev
14+
pip install jupyter
15+
16+
## install: installs all test, dev, and experimental requirements
17+
.PHONY: install
18+
install: install-test install-dev
19+
1220
#################
1321
# Test and Lint #
1422
#################
1523

1624
.PHONY: test
1725
test:
1826
PYTHONPATH=. pytest \
19-
tests
27+
tests
28+
29+
###########
30+
# Jupyter #
31+
###########
32+
33+
## run-jupyter: starts jupyter notebook
34+
.PHONY: run-jupyter
35+
run-jupyter:
36+
PYTHONPATH=$(realpath .) JUPYTER_PATH=$(realpath .) jupyter-notebook --NotebookApp.token='' --NotebookApp.password=''

0 commit comments

Comments
 (0)