Ignore fixture-custom-ca-roots service in integration test (#2321)

ignore fixture-custom-ca-roots
This commit is contained in:
Hubert Deng 2023-08-03 14:17:30 -07:00 committed by GitHub
parent 013297ea00
commit 8bf13a7a4b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -150,8 +150,8 @@ echo "${_endgroup}"
# Table formatting based on https://stackoverflow.com/a/39144364
COMPOSE_PS_OUTPUT=$(docker compose ps --format json | jq -r \
'.[] |
# we only care about running services. geoipupdate always exits, so we ignore it
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") |
# Filter to only show the service name and state
with_entries(select(.key | in({"Service":1, "State":1})))
')