summaryrefslogblamecommitdiffstatshomepage
path: root/Makefile
blob: 9b954e228039a1bea230d992a14ab3caef95bd2b (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                                                                            
                             



                                                            
                                         
wheel: frontend docs
	poetry build

frontend:
	npm -C frontend run build

docs:
	rm -rf src/hircine/static/help
	poetry run sphinx-build -Wb html -j auto -d .doctrees/ docs/ src/hircine/static/help

test:
	poetry run pytest -qs

coverage:
	poetry run pytest -s --cov=hircine --cov-report=html

.PHONY: wheel frontend docs test coverage