mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-15 12:47:56 +08:00
23 lines
634 B
Makefile
23 lines
634 B
Makefile
include ../../common.mk
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -f common/web/templates/index.html
|
|
rm -rf common/web/static
|
|
rm -f common/web/csp-hashes.json
|
|
|
|
.PHONY: unit-test
|
|
unit-test:
|
|
PYTHONWARNINGS=ignore:ResourceWarning coverage run \
|
|
--source=app,cli,common,compute,converters,data_anndata,data_common \
|
|
--omit=.coverage,venv \
|
|
-m unittest discover \
|
|
--start-directory ../test/test_server/unit \
|
|
--top-level-directory ../../ \
|
|
--verbose; test_result=$$?; \
|
|
exit $$test_result \
|
|
|
|
.PHONY: test-annotations-performance
|
|
test-annotations-performance:
|
|
python ../test/test_server/performance/performance_test_annotations_backend.py
|