File size: 571 Bytes
cb04606
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Makefile

install:
	pip install --upgrade pip &&\
		pip install -r requirements.txt
		
test:
	python -m pytest -vvv -cov=hello --cov=greeting \
		--cov=smath --cov=web tests
	python -m pytest --nbval notebook.ipynb # test jupyter notebook
	#python -m pytest -v tests/test_web.py # if just test web

debug:
	python -m pytest -vv --pdb #Debugger is invoked
	
one-test:
	python -m pytest -vv tests/test_greeting.py::test_my_name4
	
debugthree:
	python -m pytest -vv --pdb --maxfail=4
	
format:
	black *.py
	
lint:
	pylint --disable=R,C *.py
	
all: install lint test format