From 6627863e1060300393c26bf3b40907491c499afe Mon Sep 17 00:00:00 2001 From: "karel.picman@lbcfree.net" Date: Tue, 2 Feb 2021 12:58:59 +0100 Subject: [PATCH] #1133 run litmus tests on travis --- test/ci/redmine_install.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/ci/redmine_install.sh b/test/ci/redmine_install.sh index 4024f4b5..1a3d6913 100644 --- a/test/ci/redmine_install.sh +++ b/test/ci/redmine_install.sh @@ -50,11 +50,13 @@ test() # Litmus # Run Webrick server - bundle exec rails server webrick -e test + bundle exec rails server webrick -e test -d # Create a test project with DMS enabled via REST API curl -v -H "Content-Type: application/xml" -X POST --data "@projects.xml" -u admin:admin http://localhost:3000/create.xml # Run Litmus tests litmus http://localhost:3000/dmsf/webdav/c1 admin admin + # Shutdown Webrick + kill `cat tmp/pids/server.pid` } uninstall()