Skip to content

Commit 23e94b4

Browse files
authored
Update Makefile
1 parent 13b5bd5 commit 23e94b4

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Makefile

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,13 @@ install:
22
pip install --upgrade pip &&\
33
pip install -r requirements.txt
44
test:
5-
python -m pytest -vv --cov=main --cov=mylib test_*.py
5+
python -m pytest -vv --cov=main --cov=mylib test_*.py &&\
6+
python -m pytest --nbval notebook.ipynb
67
format:
78
black *.py
89
lint:
910
pylint --disable=R,C *.py mylib/*.py
1011
refactor: format lint
1112
deploy:
1213
# deploy goes here
13-
all: install lint test format deploy
14+
all: install lint test format deploy

0 commit comments

Comments
 (0)