Skip to content

Commit

Permalink
Ignore fixture-custom-ca-roots service in integration test (#2321)
Browse files Browse the repository at this point in the history
ignore fixture-custom-ca-roots
  • Loading branch information
hubertdeng123 authored Aug 3, 2023
1 parent 013297e commit 8bf13a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _integration-test/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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})))
')
Expand Down

0 comments on commit 8bf13a7

Please sign in to comment.