We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8bca82c commit a835654Copy full SHA for a835654
.github/workflows/tests.yml
@@ -81,6 +81,8 @@ jobs:
81
yq eval '.services.backend.environment += ["MONGO_ROOT_PASSWORD=rootpassword"]' -i docker-compose.ci.yaml
82
# Disable OpenTelemetry SDK during tests to avoid exporter retries
83
yq eval '.services.backend.environment += ["OTEL_SDK_DISABLED=true"]' -i docker-compose.ci.yaml
84
+ # Remove ./backend:/app volume mount - CI doesn't need hot-reload and it creates .venv permission conflicts
85
+ yq eval '.services.backend.volumes = [.services.backend.volumes[] | select(. != "./backend:/app")]' -i docker-compose.ci.yaml
86
87
# MongoDB service already has defaults in docker-compose.yaml (root/rootpassword)
88
# No need to override them
0 commit comments