Files
cellxgene/server/Makefile
2019-12-19 15:20:41 -08:00

17 lines
185 B
Makefile

.PHONY: fmt
fmt:
yapf -ipr .
.PHONY: lint
lint:
flake8
.PHONY: clean
clean:
rm -f app/web/templates/index.html
rm -rf app/web/static
.PHONY: unit-test
unit-test:
pytest -s test