Skip to content

Commit 7d9d77a

Browse files
committed
github actions: fix tests
1 parent 1cfdc59 commit 7d9d77a

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,13 +63,13 @@ jobs:
6363
6464
cleanup() {
6565
set +e
66-
"${PD[@]}" kill --all
66+
"${PD[@]}" kill --all >/dev/null 2>&1
6767
for name in \
6868
alpine-work alpine-restored alpine-built \
6969
debian-work debian-restored \
7070
ubuntu-work ubuntu-restored
7171
do
72-
"${PD[@]}" rm -q "${name}"
72+
"${PD[@]}" rm -q "${name}" >/dev/null 2>&1
7373
done
7474
rm -rf "${WORKDIR}"
7575
}
@@ -141,7 +141,7 @@ jobs:
141141
142142
pd login alpine-work --detach -- sh -c 'while :; do sleep 1; done'
143143
sleep 2
144-
assert_contains "$(pd ps)" "alpine-work"
144+
assert_contains "$(pd ps 2>&1)" "alpine-work"
145145
test -n "$(pd ps -q)"
146146
pd kill alpine-work
147147
sleep 1

0 commit comments

Comments
 (0)