File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1818# Configuration Variables
1919# ========================
2020
21- PYTEST_ARGS ?= -v -x # Override with e.g. PYTEST_ARGS="-vv --tb=short"
21+ PYTEST_ARGS ?= -vvv -s -x # Override with e.g. PYTEST_ARGS="-vv --tb=short"
2222COVERAGE ?= 0 # Set COVERAGE=1 to enable coverage: make test COVERAGE=1
2323COVERAGE_FAIL_UNDER ?= 85 # Minimum coverage % to pass: make coverage-report COVERAGE_FAIL_UNDER=70
2424KEEP_COMPOSE ?= 0 # Set KEEP_COMPOSE=1 to keep containers after integration tests
3737ifeq ($(KEEP_COMPOSE ) ,1)
3838 CLEANUP_COMMAND = echo "Keeping containers running for debugging (KEEP_COMPOSE=1)"
3939else
40- CLEANUP_COMMAND = docker compose -f dev/docker-compose-integration.yml down -v --remove-orphans 2>/dev/null || true
40+ CLEANUP_COMMAND = docker compose -f dev/docker-compose-integration.yml down -v --remove-orphans --timeout 0 2>/dev/null || true
4141endif
4242
4343# ============
You can’t perform that action at this time.
0 commit comments