mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-15 20:57:56 +08:00
17 lines
185 B
Makefile
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
|