We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 013297e commit 8bf13a7Copy full SHA for 8bf13a7
_integration-test/run.sh
@@ -150,8 +150,8 @@ echo "${_endgroup}"
150
# Table formatting based on https://stackoverflow.com/a/39144364
151
COMPOSE_PS_OUTPUT=$(docker compose ps --format json | jq -r \
152
'.[] |
153
- # we only care about running services. geoipupdate always exits, so we ignore it
154
- select(.State != "running" and .Service != "geoipupdate") |
+ # we only care about running services. geoipupdate and fixture-custom-ca-roots always exits, so we ignore it
+ select(.State != "running" and .Service != "geoipupdate" and .Service != "fixture-custom-ca-roots") |
155
# Filter to only show the service name and state
156
with_entries(select(.key | in({"Service":1, "State":1})))
157
')
0 commit comments