We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13b5bd5 commit 23e94b4Copy full SHA for 23e94b4
Makefile
@@ -2,12 +2,13 @@ install:
2
pip install --upgrade pip &&\
3
pip install -r requirements.txt
4
test:
5
- python -m pytest -vv --cov=main --cov=mylib test_*.py
+ python -m pytest -vv --cov=main --cov=mylib test_*.py &&\
6
+ python -m pytest --nbval notebook.ipynb
7
format:
8
black *.py
9
lint:
10
pylint --disable=R,C *.py mylib/*.py
11
refactor: format lint
12
deploy:
13
# deploy goes here
-all: install lint test format deploy
14
+all: install lint test format deploy
0 commit comments