d/tests/gnome-desktop-testing: Skip libostree/test-concurrency.py.test
It does not appear to be completely reliable. (See #901170)
This commit is contained in:
parent
1dcc31f8d7
commit
31d1b1ecce
|
|
@ -1,3 +1,11 @@
|
||||||
|
ostree (2018.5-2) UNRELEASED; urgency=medium
|
||||||
|
|
||||||
|
* d/tests/gnome-desktop-testing: Skip libostree/test-concurrency.py.test
|
||||||
|
during autopkgtest. It does not appear to be completely reliable.
|
||||||
|
(See #901170)
|
||||||
|
|
||||||
|
-- Simon McVittie <smcv@debian.org> Sun, 10 Jun 2018 13:55:29 +0100
|
||||||
|
|
||||||
ostree (2018.5-1) unstable; urgency=medium
|
ostree (2018.5-1) unstable; urgency=medium
|
||||||
|
|
||||||
* New upstream release
|
* New upstream release
|
||||||
|
|
|
||||||
|
|
@ -11,4 +11,20 @@ unset http_proxy
|
||||||
unset https_proxy
|
unset https_proxy
|
||||||
unset no_proxy
|
unset no_proxy
|
||||||
|
|
||||||
exec gnome-desktop-testing-runner libostree
|
e=0
|
||||||
|
|
||||||
|
tests="$(gnome-desktop-testing-runner -l libostree | while read t; do
|
||||||
|
t="${t%% *}"
|
||||||
|
|
||||||
|
case "$t" in
|
||||||
|
(libostree/test-concurrency.py.test)
|
||||||
|
# https://bugs.debian.org/901170
|
||||||
|
# https://github.com/ostreedev/ostree/issues/1620
|
||||||
|
continue
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
echo "$t"
|
||||||
|
done)"
|
||||||
|
|
||||||
|
exec gnome-desktop-testing-runner $tests
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue