From: Hans-Christoph Steiner Date: Wed, 21 Feb 2018 13:08:03 +0000 (+0100) Subject: tests: do not automatically run install.TestCase, its troublesome X-Git-Tag: 1.0.1~2^2~4 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=089712c01292084795014187f4afeb4c49306242;p=fdroidserver.git tests: do not automatically run install.TestCase, its troublesome `fdroid install` is rarely used, if at all, and the test frequently fails for no reason in gitlab-ci, because it can't start the adb server. --- diff --git a/tests/run-tests b/tests/run-tests index 13a96a37..81f0afc9 100755 --- a/tests/run-tests +++ b/tests/run-tests @@ -125,7 +125,11 @@ cd $WORKSPACE/tests/getsig ./make.sh cd $WORKSPACE/tests -for testcase in $WORKSPACE/tests/*.TestCase; do +for testcase in $WORKSPACE/tests/i*.TestCase; do + if [ $testcase == $WORKSPACE/tests/install.TestCase ]; then + echo "skipping install.TestCase, its too troublesome in CI builds" + continue + fi $testcase done