Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ help:
@echo "- django-checks Run the django checks"
@echo "- django-check-migrations Check that no django migration file is missing"
@echo "- test Run the tests"
@echo "- test-coverage Run the tests and create a coverage report"
@echo "- test-conformance Run stac-api-validator, needs a valid collection name, e.g. collection=ch.are.agglomerationsverkehr"
@echo -e " \033[1mSPEC TARGETS\033[0m "
@echo "- lint-specs Lint the openapi specs (openapi.yaml and openapitransactional.yaml)"
Expand Down Expand Up @@ -223,12 +224,6 @@ test-coverage:
$(PYTHON) $(DJANGO_MANAGER) collectstatic --noinput
$(PYTEST) -n 20 --cov --cov-report=html

.PHONY: test-ci
test-ci:
# Collect static first to avoid warning in the test
$(PYTHON) $(DJANGO_MANAGER) collectstatic --noinput
$(PYTEST) -n 20 --cov --cov-report=xml

###################
# Specs
.PHONY: build-specs
Expand Down
Loading