From 43a2ea415538ae465c479d2b3ede493895f4a044 Mon Sep 17 00:00:00 2001 From: "James O. D. Hunt" Date: Mon, 25 Jun 2018 10:54:48 +0100 Subject: [PATCH] tests: Run EulerOS tests last The EulerOS repository servers can be a little slower to respond than others. This can lead to timeout issues so move the EulerOS tests to the end to give the other tests a chance to run. Signed-off-by: James O. D. Hunt --- tests/image_creation.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/image_creation.sh b/tests/image_creation.sh index a0dbd7490b..5a630001ea 100755 --- a/tests/image_creation.sh +++ b/tests/image_creation.sh @@ -353,8 +353,11 @@ main() test_fedora test_clearlinux test_centos - test_euleros test_alpine + + # Run last as EulerOS servers can be slow and we don't want to fail the + # previous tests. + test_euleros } main "$@"