From c93d23a85d53aa42170248a2ac19fe305e7c3c56 Mon Sep 17 00:00:00 2001 From: Dilawar Singh <dilawars@ncbs.res.in> Date: Sun, 17 Dec 2017 16:28:36 +0530 Subject: [PATCH] Removed line which lauched GUI. It fails on travis since DISPLAY is not enabled. May be some other test to test the gui without lauching it? --- _travis/build_on_linux.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/_travis/build_on_linux.sh b/_travis/build_on_linux.sh index b1a1d85c..dffecb32 100755 --- a/_travis/build_on_linux.sh +++ b/_travis/build_on_linux.sh @@ -27,7 +27,8 @@ set -e cd ~ && /usr/bin/python -c \ "import moose; print moose.version(); print( moose.__file__ ); moose.test( timeout = 10 )" - # Now launch gui, terminate is after 3 seconds. - timeout 3 moosegui + # NOTE: Lauching gui would work on travis since DISPLAY is defined. + # However we can check if files are installed. + # TODO: Put some test for GUI. ) -- GitLab