From e7cc486d182a70ed1e1983d4011af85dd85e0d2f Mon Sep 17 00:00:00 2001 From: Jonathan Green Date: Wed, 13 Mar 2013 01:31:09 -0300 Subject: [PATCH 01/19] First try at getting travis building. --- .travis.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..ff5b51f5 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,26 @@ +language: php +php: + - 5.3 +before_script: + - mysql -u root -e 'create database drupal;' + - mysql -u root -e "create database fedora;" + - mysql -u root -e "GRANT ALL PRIVILEGES ON fedora.* To 'fedora'@'localhost' IDENTIFIED BY 'fedora';" + - mysql -u root -e "GRANT ALL PRIVILEGES ON drupal.* To 'drupal'@'localhost' IDENTIFIED BY 'drupal';" + - git clone git://github.com/Islandora/islandora_tomcat.git + - cd islandora_tomcat + - export CATALINA_HOME='.' + - ./bin/startup.sh + - cd .. + - pyrus channel-discover pear.drush.org + - pyrus install drush/drush + - phpenv rehash + - drush dl --yes drupal + - cd drupal-* + - drush si standard --db-url=mysql://drupal:drupal@localhost/drupal --yes + - drush en --yes simpletest + - drush cc all + - drush runserver --server=builtin 80 & + - sleep 4 + - drush vset --yes simpletest_verbose FALSE +script: + - drush test-run Syslog --xml --uri=http://127.0.0.1:8080 From ff0ed13e1f950fac62987e355d1ec8092e80861c Mon Sep 17 00:00:00 2001 From: Jonathan Green Date: Wed, 13 Mar 2013 02:52:53 -0300 Subject: [PATCH 02/19] Added a config for travis-ci This config will let islandora work with travis-ci. travis more travis This one should work. Test travis with apache. added sudo Added chown Fixed permissions... i hope.w Apache config back to non-apache Another try at a travis config Added some debug output woot Another update Added some debug data to sort out whats up with travis. more debug another More debug Perhaps this will finally work Revert "More debug" This reverts commit 508e993f4b02f7f3c9eb0d978514d0be89abbc78. Revert "another" This reverts commit cbf280eb4ebd22dda90788752787250a0ef71361. Revert "more debug" This reverts commit e6ce86ad77fdb89807c426adaa04a90a9955f343. Revert "Added some debug data to sort out whats up with travis." This reverts commit 5cb8e5b2f5dd20896f501a70167495b42d8f77f4. Holy jumping jesus it works. --- .travis.yml | 19 ++++++++++++++----- tests/travis.test_config.ini | 6 ++++++ 2 files changed, 20 insertions(+), 5 deletions(-) create mode 100644 tests/travis.test_config.ini diff --git a/.travis.yml b/.travis.yml index ff5b51f5..fa7e5ca9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,26 +1,35 @@ language: php php: - 5.3 -before_script: +before_install: - mysql -u root -e 'create database drupal;' - mysql -u root -e "create database fedora;" - mysql -u root -e "GRANT ALL PRIVILEGES ON fedora.* To 'fedora'@'localhost' IDENTIFIED BY 'fedora';" - mysql -u root -e "GRANT ALL PRIVILEGES ON drupal.* To 'drupal'@'localhost' IDENTIFIED BY 'drupal';" + - cd $HOME + - sudo apt-get update -qq + - sudo apt-get install -qq php5-cgi + - sudo apt-get install -qq php5-mysql + - git clone git://github.com/Islandora/tuque.git - git clone git://github.com/Islandora/islandora_tomcat.git - cd islandora_tomcat - export CATALINA_HOME='.' - ./bin/startup.sh - - cd .. + - cd $HOME - pyrus channel-discover pear.drush.org - pyrus install drush/drush - phpenv rehash - drush dl --yes drupal - cd drupal-* - drush si standard --db-url=mysql://drupal:drupal@localhost/drupal --yes + - drush runserver 8081 > /dev/null & + - ln -s $TRAVIS_BUILD_DIR sites/all/modules/islandora + - mv sites/all/modules/islandora/tests/travis.test_config.ini sites/all/modules/islandora/tests/test_config.ini + - mkdir sites/all/libraries + - ln -s $HOME/tuque sites/all/libraries/tuque - drush en --yes simpletest + - drush en --user=1 --yes islandora - drush cc all - - drush runserver --server=builtin 80 & - sleep 4 - - drush vset --yes simpletest_verbose FALSE script: - - drush test-run Syslog --xml --uri=http://127.0.0.1:8080 + - drush test-run --uri=http://127.0.0.1:8081 Islandora diff --git a/tests/travis.test_config.ini b/tests/travis.test_config.ini new file mode 100644 index 00000000..61d63713 --- /dev/null +++ b/tests/travis.test_config.ini @@ -0,0 +1,6 @@ +[fedora] +fedora_url = "http://localhost:8080/fedora" +use_drupal_filter = TRUE +drupal_filter_file = "/home/travis/islandora_tomcat/fedora/server/config/filter-drupal.xml" +admin_user = "fedoraAdmin" +admin_pass = "fedoraAdmin" From 212e113700ab5ed1da4ca2e2dee92480bf17363e Mon Sep 17 00:00:00 2001 From: jonathangreen Date: Thu, 28 Mar 2013 12:14:58 -0300 Subject: [PATCH 03/19] Updated travis config a bit --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index fa7e5ca9..a93edb4b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -22,7 +22,7 @@ before_install: - drush dl --yes drupal - cd drupal-* - drush si standard --db-url=mysql://drupal:drupal@localhost/drupal --yes - - drush runserver 8081 > /dev/null & + - drush runserver localhost:8081 > /dev/null & - ln -s $TRAVIS_BUILD_DIR sites/all/modules/islandora - mv sites/all/modules/islandora/tests/travis.test_config.ini sites/all/modules/islandora/tests/test_config.ini - mkdir sites/all/libraries @@ -32,4 +32,4 @@ before_install: - drush cc all - sleep 4 script: - - drush test-run --uri=http://127.0.0.1:8081 Islandora + - sudo -u www-data drush test-run --uri=http://localhost:8081 Islandora From 1f915cad127373b3fe7e042cd514c6ad7437fe0a Mon Sep 17 00:00:00 2001 From: jonathangreen Date: Thu, 28 Mar 2013 12:27:19 -0300 Subject: [PATCH 04/19] Another try at travis --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index a93edb4b..8fae0457 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,6 +19,7 @@ before_install: - pyrus channel-discover pear.drush.org - pyrus install drush/drush - phpenv rehash + - sudo -u www-data phpenv rehash - drush dl --yes drupal - cd drupal-* - drush si standard --db-url=mysql://drupal:drupal@localhost/drupal --yes From 90b9b6ceb602ac68b2c4daa9b0548d3321b09b55 Mon Sep 17 00:00:00 2001 From: Jonathan Green Date: Tue, 2 Apr 2013 19:33:43 +0000 Subject: [PATCH 05/19] Some updates of tests for Travis --- tests/hooks.test | 2 +- tests/web_test_case.inc | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/hooks.test b/tests/hooks.test index 0a667fee..bc3020f3 100644 --- a/tests/hooks.test +++ b/tests/hooks.test @@ -32,7 +32,7 @@ class IslandoraHooksTestCase extends IslandoraWebTestCase { * @see IslandoraWebTestCase::setUp() */ public function setUp() { - parent::setUp('islandora_hooks_test', 'devel'); + parent::setUp('islandora_hooks_test'); $this->repository = $this->admin->repository; $this->purgeTestObjects(); } diff --git a/tests/web_test_case.inc b/tests/web_test_case.inc index a513de43..3651e3db 100644 --- a/tests/web_test_case.inc +++ b/tests/web_test_case.inc @@ -18,6 +18,10 @@ class IslandoraWebTestCase extends DrupalWebTestCase { // Always enable islandora. $args[] = 'islandora'; parent::setUp($args); + // Its possible test are running before class autoloading + module_load_include('inc', 'islandora', 'includes/tuque'); + module_load_include('inc', 'islandora', 'includes/tuque_wrapper'); + $this->configuration = $this->getTestConfiguration(); if ($this->configuration['use_drupal_filter']) { $this->backUpDrupalFilter(); From b1e57b16d89d95af9abe96cc13dfc29103638927 Mon Sep 17 00:00:00 2001 From: jonathangreen Date: Tue, 2 Apr 2013 16:38:57 -0300 Subject: [PATCH 06/19] Another change to the travis-ci config --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 8fae0457..c5284425 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,7 +11,7 @@ before_install: - sudo apt-get install -qq php5-cgi - sudo apt-get install -qq php5-mysql - git clone git://github.com/Islandora/tuque.git - - git clone git://github.com/Islandora/islandora_tomcat.git + - git clone -b 3.5 git://github.com/Islandora/islandora_tomcat.git - cd islandora_tomcat - export CATALINA_HOME='.' - ./bin/startup.sh @@ -23,7 +23,7 @@ before_install: - drush dl --yes drupal - cd drupal-* - drush si standard --db-url=mysql://drupal:drupal@localhost/drupal --yes - - drush runserver localhost:8081 > /dev/null & + - drush runserver localhost:8081 &>/dev/null & - ln -s $TRAVIS_BUILD_DIR sites/all/modules/islandora - mv sites/all/modules/islandora/tests/travis.test_config.ini sites/all/modules/islandora/tests/test_config.ini - mkdir sites/all/libraries @@ -33,4 +33,4 @@ before_install: - drush cc all - sleep 4 script: - - sudo -u www-data drush test-run --uri=http://localhost:8081 Islandora + - drush test-run --uri=http://localhost:8081 Islandora From 12dcbb5b17340653c249c14b00e117ca642994a3 Mon Sep 17 00:00:00 2001 From: jonathangreen Date: Tue, 2 Apr 2013 16:44:01 -0300 Subject: [PATCH 07/19] Another travis config change --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index c5284425..b1c550de 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,7 +19,6 @@ before_install: - pyrus channel-discover pear.drush.org - pyrus install drush/drush - phpenv rehash - - sudo -u www-data phpenv rehash - drush dl --yes drupal - cd drupal-* - drush si standard --db-url=mysql://drupal:drupal@localhost/drupal --yes From 13efc16b6a57720d9c07913a2c87174773a52920 Mon Sep 17 00:00:00 2001 From: jonathangreen Date: Thu, 4 Apr 2013 15:31:53 -0300 Subject: [PATCH 08/19] Updated travis config again --- .travis.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index b1c550de..b0883342 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,6 @@ language: php php: - - 5.3 + - 5.3.3 before_install: - mysql -u root -e 'create database drupal;' - mysql -u root -e "create database fedora;" @@ -8,8 +8,6 @@ before_install: - mysql -u root -e "GRANT ALL PRIVILEGES ON drupal.* To 'drupal'@'localhost' IDENTIFIED BY 'drupal';" - cd $HOME - sudo apt-get update -qq - - sudo apt-get install -qq php5-cgi - - sudo apt-get install -qq php5-mysql - git clone git://github.com/Islandora/tuque.git - git clone -b 3.5 git://github.com/Islandora/islandora_tomcat.git - cd islandora_tomcat From 35117d4f3046d8e5fb63b87edbaf74951893ca2d Mon Sep 17 00:00:00 2001 From: jonathangreen Date: Thu, 4 Apr 2013 15:40:33 -0300 Subject: [PATCH 09/19] added another updated travis config --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index b0883342..6455bb7f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,6 @@ language: php php: - - 5.3.3 + - 5.4 before_install: - mysql -u root -e 'create database drupal;' - mysql -u root -e "create database fedora;" @@ -20,7 +20,7 @@ before_install: - drush dl --yes drupal - cd drupal-* - drush si standard --db-url=mysql://drupal:drupal@localhost/drupal --yes - - drush runserver localhost:8081 &>/dev/null & + - drush runserver --server=builtin localhost:8081 &>/dev/null & - ln -s $TRAVIS_BUILD_DIR sites/all/modules/islandora - mv sites/all/modules/islandora/tests/travis.test_config.ini sites/all/modules/islandora/tests/test_config.ini - mkdir sites/all/libraries From 258688747606cefd664a704164ce51db37c927e3 Mon Sep 17 00:00:00 2001 From: jonathangreen Date: Thu, 4 Apr 2013 15:54:45 -0300 Subject: [PATCH 10/19] Updated travis to build with different fedora versions --- .travis.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.travis.yml b/.travis.yml index 6455bb7f..e9909ebe 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,9 @@ language: php php: - 5.4 +env: + - FEDORA_VERSION="3.5" + - FEDORA_VERSION="3.6.2" before_install: - mysql -u root -e 'create database drupal;' - mysql -u root -e "create database fedora;" From 2ac9ce5507d3bee1d8911b8569641105ec5778b0 Mon Sep 17 00:00:00 2001 From: jonathangreen Date: Thu, 4 Apr 2013 16:11:53 -0300 Subject: [PATCH 11/19] Updated travis to build with different fedora versions --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index e9909ebe..ffd4d8df 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,7 +12,7 @@ before_install: - cd $HOME - sudo apt-get update -qq - git clone git://github.com/Islandora/tuque.git - - git clone -b 3.5 git://github.com/Islandora/islandora_tomcat.git + - git clone -b $FEDORA_VERSION git://github.com/Islandora/islandora_tomcat.git - cd islandora_tomcat - export CATALINA_HOME='.' - ./bin/startup.sh From 64ff24a0853c4978e76f93f8e7744e30f9c73924 Mon Sep 17 00:00:00 2001 From: jonathangreen Date: Thu, 4 Apr 2013 16:27:36 -0300 Subject: [PATCH 12/19] Updated travis to build with different fedora versions --- .travis.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index ffd4d8df..6626bf0e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,16 +1,15 @@ language: php php: + - 5.3.3 - 5.4 env: - FEDORA_VERSION="3.5" - - FEDORA_VERSION="3.6.2" before_install: - mysql -u root -e 'create database drupal;' - mysql -u root -e "create database fedora;" - mysql -u root -e "GRANT ALL PRIVILEGES ON fedora.* To 'fedora'@'localhost' IDENTIFIED BY 'fedora';" - mysql -u root -e "GRANT ALL PRIVILEGES ON drupal.* To 'drupal'@'localhost' IDENTIFIED BY 'drupal';" - cd $HOME - - sudo apt-get update -qq - git clone git://github.com/Islandora/tuque.git - git clone -b $FEDORA_VERSION git://github.com/Islandora/islandora_tomcat.git - cd islandora_tomcat @@ -23,7 +22,7 @@ before_install: - drush dl --yes drupal - cd drupal-* - drush si standard --db-url=mysql://drupal:drupal@localhost/drupal --yes - - drush runserver --server=builtin localhost:8081 &>/dev/null & + - drush runserver localhost:8081 &>/dev/null & - ln -s $TRAVIS_BUILD_DIR sites/all/modules/islandora - mv sites/all/modules/islandora/tests/travis.test_config.ini sites/all/modules/islandora/tests/test_config.ini - mkdir sites/all/libraries From 031d1579ad71771ef415dbf260a6ddb561974c88 Mon Sep 17 00:00:00 2001 From: jonathangreen Date: Thu, 4 Apr 2013 16:53:37 -0300 Subject: [PATCH 13/19] Updated travis to build with different fedora versions --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 6626bf0e..277a591b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -22,7 +22,7 @@ before_install: - drush dl --yes drupal - cd drupal-* - drush si standard --db-url=mysql://drupal:drupal@localhost/drupal --yes - - drush runserver localhost:8081 &>/dev/null & + - drush runserver --php-cgi=$HOME/.phpenv/shims/php-cgi localhost:8081 &>/dev/null & - ln -s $TRAVIS_BUILD_DIR sites/all/modules/islandora - mv sites/all/modules/islandora/tests/travis.test_config.ini sites/all/modules/islandora/tests/test_config.ini - mkdir sites/all/libraries From 80aa8ed756df0dfb020f496eae5ddaadb566394f Mon Sep 17 00:00:00 2001 From: jonathangreen Date: Thu, 4 Apr 2013 17:15:18 -0300 Subject: [PATCH 14/19] moved travis setup to a script --- .travis.yml | 27 +-------------------------- tests/travis_setup.sh | 28 ++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+), 26 deletions(-) create mode 100755 tests/travis_setup.sh diff --git a/.travis.yml b/.travis.yml index 277a591b..1adb38a4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,31 +5,6 @@ php: env: - FEDORA_VERSION="3.5" before_install: - - mysql -u root -e 'create database drupal;' - - mysql -u root -e "create database fedora;" - - mysql -u root -e "GRANT ALL PRIVILEGES ON fedora.* To 'fedora'@'localhost' IDENTIFIED BY 'fedora';" - - mysql -u root -e "GRANT ALL PRIVILEGES ON drupal.* To 'drupal'@'localhost' IDENTIFIED BY 'drupal';" - - cd $HOME - - git clone git://github.com/Islandora/tuque.git - - git clone -b $FEDORA_VERSION git://github.com/Islandora/islandora_tomcat.git - - cd islandora_tomcat - - export CATALINA_HOME='.' - - ./bin/startup.sh - - cd $HOME - - pyrus channel-discover pear.drush.org - - pyrus install drush/drush - - phpenv rehash - - drush dl --yes drupal - - cd drupal-* - - drush si standard --db-url=mysql://drupal:drupal@localhost/drupal --yes - - drush runserver --php-cgi=$HOME/.phpenv/shims/php-cgi localhost:8081 &>/dev/null & - - ln -s $TRAVIS_BUILD_DIR sites/all/modules/islandora - - mv sites/all/modules/islandora/tests/travis.test_config.ini sites/all/modules/islandora/tests/test_config.ini - - mkdir sites/all/libraries - - ln -s $HOME/tuque sites/all/libraries/tuque - - drush en --yes simpletest - - drush en --user=1 --yes islandora - - drush cc all - - sleep 4 + - $TRAVIS_BUILD_DIR/test/setup_travis.sh script: - drush test-run --uri=http://localhost:8081 Islandora diff --git a/tests/travis_setup.sh b/tests/travis_setup.sh new file mode 100755 index 00000000..936aea0d --- /dev/null +++ b/tests/travis_setup.sh @@ -0,0 +1,28 @@ +#!/bin/bash + +mysql -u root -e 'create database drupal;' +mysql -u root -e "create database fedora;" +mysql -u root -e "GRANT ALL PRIVILEGES ON fedora.* To 'fedora'@'localhost' IDENTIFIED BY 'fedora';" +mysql -u root -e "GRANT ALL PRIVILEGES ON drupal.* To 'drupal'@'localhost' IDENTIFIED BY 'drupal';" +cd $HOME +git clone git://github.com/Islandora/tuque.git +git clone -b $FEDORA_VERSION git://github.com/Islandora/islandora_tomcat.git +cd islandora_tomcat +export CATALINA_HOME='.' +./bin/startup.sh +cd $HOME +pyrus channel-discover pear.drush.org +pyrus install drush/drush +phpenv rehash +drush dl --yes drupal +cd drupal-* +drush si standard --db-url=mysql://drupal:drupal@localhost/drupal --yes +drush runserver --php-cgi=$HOME/.phpenv/shims/php-cgi localhost:8081 &>/dev/null & +ln -s $TRAVIS_BUILD_DIR sites/all/modules/islandora +mv sites/all/modules/islandora/tests/travis.test_config.ini sites/all/modules/islandora/tests/test_config.ini +mkdir sites/all/libraries +ln -s $HOME/tuque sites/all/libraries/tuque +drush en --yes simpletest +drush en --user=1 --yes islandora +drush cc all +sleep 4 From f4c758684b977b672b84152a6f1913039265ff7f Mon Sep 17 00:00:00 2001 From: jonathangreen Date: Thu, 4 Apr 2013 17:18:24 -0300 Subject: [PATCH 15/19] Minor mistake from previous travis config --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 1adb38a4..acc9a0dc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,6 +5,6 @@ php: env: - FEDORA_VERSION="3.5" before_install: - - $TRAVIS_BUILD_DIR/test/setup_travis.sh + - $TRAVIS_BUILD_DIR/tests/setup_travis.sh script: - drush test-run --uri=http://localhost:8081 Islandora From 3b5e7cda938c3adb2171816cb79605ea94d80bf5 Mon Sep 17 00:00:00 2001 From: jonathangreen Date: Thu, 4 Apr 2013 17:20:42 -0300 Subject: [PATCH 16/19] Another dumb path error --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index acc9a0dc..dcd11c3e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,6 +5,6 @@ php: env: - FEDORA_VERSION="3.5" before_install: - - $TRAVIS_BUILD_DIR/tests/setup_travis.sh + - $TRAVIS_BUILD_DIR/tests/travis_setup.sh script: - drush test-run --uri=http://localhost:8081 Islandora From 6e49122ad090a815663227c85c37092d943e77ca Mon Sep 17 00:00:00 2001 From: jonathangreen Date: Thu, 4 Apr 2013 17:27:15 -0300 Subject: [PATCH 17/19] should work again --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index dcd11c3e..99d605b4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,5 +6,6 @@ env: - FEDORA_VERSION="3.5" before_install: - $TRAVIS_BUILD_DIR/tests/travis_setup.sh + - cd drupal-* script: - drush test-run --uri=http://localhost:8081 Islandora From 28b66eaf8e5a33e040c520c49a7d853320f3c390 Mon Sep 17 00:00:00 2001 From: jonathangreen Date: Thu, 4 Apr 2013 17:34:35 -0300 Subject: [PATCH 18/19] another update for paths --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 99d605b4..96872f5c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,6 +6,6 @@ env: - FEDORA_VERSION="3.5" before_install: - $TRAVIS_BUILD_DIR/tests/travis_setup.sh - - cd drupal-* + - cd $HOME/drupal-* script: - drush test-run --uri=http://localhost:8081 Islandora From 9d714e1c81ab7e67040514d73f79dbadcd687cff Mon Sep 17 00:00:00 2001 From: jonathangreen Date: Thu, 4 Apr 2013 17:56:16 -0300 Subject: [PATCH 19/19] Added some branch exclusions. Renamed readme. --- .travis.yml | 3 +++ README.txt => README.md | 0 2 files changed, 3 insertions(+) rename README.txt => README.md (100%) diff --git a/.travis.yml b/.travis.yml index 96872f5c..e5ced01d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,6 +2,9 @@ language: php php: - 5.3.3 - 5.4 +branches: + only: + - 7.x env: - FEDORA_VERSION="3.5" before_install: diff --git a/README.txt b/README.md similarity index 100% rename from README.txt rename to README.md