From 505ee586ff17a6e1a960cfee28c8c395da040629 Mon Sep 17 00:00:00 2001 From: Dhruv Date: Mon, 27 Oct 2014 18:36:33 -0400 Subject: [ticket/12962] Rename setup-phpbb-test PHPBB3-12962 --- travis/install-phpbb-test-dependencies.sh | 16 ++++++++++++++++ travis/setup-phpbb-test.sh | 16 ---------------- travis/setup-phpbb.sh | 2 +- 3 files changed, 17 insertions(+), 17 deletions(-) create mode 100755 travis/install-phpbb-test-dependencies.sh delete mode 100755 travis/setup-phpbb-test.sh (limited to 'travis') diff --git a/travis/install-phpbb-test-dependencies.sh b/travis/install-phpbb-test-dependencies.sh new file mode 100755 index 0000000000..25743ff2b1 --- /dev/null +++ b/travis/install-phpbb-test-dependencies.sh @@ -0,0 +1,16 @@ +#!/bin/bash +# +# This file is part of the phpBB Forum Software package. +# +# @copyright (c) phpBB Limited +# @license GNU General Public License, version 2 (GPL-2.0) +# +# For full copyright and license information, please see +# the docs/CREDITS.txt file. +# +set -e +set -x + +cd tests +php ../composer.phar install --dev --no-interaction --prefer-source +cd .. diff --git a/travis/setup-phpbb-test.sh b/travis/setup-phpbb-test.sh deleted file mode 100755 index 25743ff2b1..0000000000 --- a/travis/setup-phpbb-test.sh +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/bash -# -# This file is part of the phpBB Forum Software package. -# -# @copyright (c) phpBB Limited -# @license GNU General Public License, version 2 (GPL-2.0) -# -# For full copyright and license information, please see -# the docs/CREDITS.txt file. -# -set -e -set -x - -cd tests -php ../composer.phar install --dev --no-interaction --prefer-source -cd .. diff --git a/travis/setup-phpbb.sh b/travis/setup-phpbb.sh index e91b6f3624..205f23b876 100755 --- a/travis/setup-phpbb.sh +++ b/travis/setup-phpbb.sh @@ -33,7 +33,7 @@ fi if [ `php -r "echo (int) version_compare(PHP_VERSION, '5.3.19', '>=');"` == "1" ] then travis/setup-webserver.sh - travis/setup-phpbb-test.sh + travis/install-phpbb-test-dependencies.sh fi cd phpBB -- cgit v1.2.1