Skip test-local-pull.sh.test which suffers from a known bug (#842606)
This commit is contained in:
parent
d855d786c6
commit
33f37eb6d6
|
|
@ -3,4 +3,20 @@
|
||||||
set -e
|
set -e
|
||||||
exec 2>&1
|
exec 2>&1
|
||||||
|
|
||||||
exec gnome-desktop-testing-runner ostree
|
e=0
|
||||||
|
|
||||||
|
tests="$(gnome-desktop-testing-runner -l ostree | while read t; do
|
||||||
|
t="${t%% *}"
|
||||||
|
|
||||||
|
case "$t" in
|
||||||
|
(ostree/test-local-pull.sh.test)
|
||||||
|
# frequently times out, https://bugs.debian.org/842606
|
||||||
|
# https://github.com/ostreedev/ostree/issues/605
|
||||||
|
continue
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
echo "$t"
|
||||||
|
done)"
|
||||||
|
|
||||||
|
gnome-desktop-testing-runner $tests
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue