We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d52980 commit 1c06cc8Copy full SHA for 1c06cc8
Makefile
@@ -6,14 +6,31 @@ ARCH := $(shell uname -m)
6
# Install #
7
###########
8
9
-test-install:
+.PHONY: install-test
10
+ pip install pytest
11
pip install requests_mock
12
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
20
#################
21
# Test and Lint #
22
23
24
.PHONY: test
25
test:
26
PYTHONPATH=. pytest \
- 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