aboutsummaryrefslogblamecommitdiffstats
path: root/Makefile
blob: 2efe4d442462f0d4fd68db01140163b8cb8b86ce (plain) (tree)
1
2
3
4
5
6
7
8
9
             







                                        
 
      
                                                                       
 
    
                      



                            
         
                                        


                                        


                              
.PHONY: tests
.DEFAULT_GOAL := check

check:
	mypy --follow-imports=silent src

format:
	isort src
	black src

debug:
	python -m debugpy --listen 5678 --wait-for-client -m epy_reader

dev:
	poetry install

tests:
	python -m pytest -vv

coverage:
	coverage run -m pytest -vv tests
	coverage html
	python -m http.server -d htmlcov

publish:
	# poetry build
	poetry publish --build