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 <james.o.hunt@intel.com>
This commit is contained in:
James O. D. Hunt 2018-06-25 10:54:48 +01:00
parent 7b581c25d8
commit 43a2ea4155

View File

@ -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 "$@"