mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-23 01:08:13 +08:00
This splits the backend into two parts: the local backend for desktop cellxgene and the AWS backend for hosted cellxgene. The local backend is in local_server while the hosted remains in server. The general idea is to copy everything from server to local_server, pull unneeded stuff out of local_server, and keep server as-is for this PR. Not touching server means all the infra and deployment code will continue working just as it did before so we can make those changes incrementally.
50 lines
1.5 KiB
Makefile
50 lines
1.5 KiB
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: create-test-db
|
|
PYTHONWARNINGS=ignore:ResourceWarning coverage run \
|
|
--source=app,cli,common,compute,converters,data_anndata,data_common \
|
|
--omit=.coverage,data_common/fbs/NetEncoding,venv \
|
|
-m unittest discover \
|
|
--start-directory test/ \
|
|
--top-level-directory ../ \
|
|
--verbose; test_result=$$?; \
|
|
$(MAKE) clean-test-db; \
|
|
exit $$test_result \
|
|
|
|
|
|
.PHONY: test-db
|
|
test-db: create-test-db
|
|
PYTHONWARNINGS=ignore:ResourceWarning coverage run \
|
|
--source=app,cli,common,compute,converters,data_anndata,data_common \
|
|
--omit=.coverage,data_common/fbs/NetEncoding,venv \
|
|
-m unittest discover \
|
|
--start-directory test/test_database \
|
|
--top-level-directory ../ \
|
|
--verbose; test_result=$$?; \
|
|
$(MAKE) clean-test-db; \
|
|
exit $$test_result
|
|
|
|
.PHONY: create-test-db
|
|
create-test-db:
|
|
-docker run -d -p 5432:5432 --name test_db -e POSTGRES_PASSWORD=test_pw postgres
|
|
|
|
.PHONY: clean-test-db
|
|
clean-test-db:
|
|
-docker stop test_db
|
|
-docker rm test_db
|
|
|
|
.PHONY: test-annotations-performance
|
|
test-annotations-performance:
|
|
python test/performance/performance_test_annotations_backend.py
|
|
|
|
.PHONY: test-annotations-scale
|
|
test-annotations-scale:
|
|
locust -f test/performance/scale_test_annotations.py --headless -u 30 -r 10 --host https://api.cellxgene.dev.single-cell.czi.technology/cellxgene/e/ --run-time 5m 2>&1 | tee locust_dev_stats.txt
|