20 lines
611 B
Bash
Executable File
20 lines
611 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# This file is part of the Board3 Portal package.
|
|
#
|
|
# @copyright (c) Board3 Group <http://www.board3.de>
|
|
# @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
|
#
|
|
set -e
|
|
set -x
|
|
|
|
DB=$1
|
|
TRAVIS_PHP_VERSION=$2
|
|
|
|
if [ "$TRAVIS_PHP_VERSION" == "5.5" -a "$DB" == "mysqli" ]
|
|
then
|
|
phpBB/vendor/bin/phpunit --configuration phpBB/ext/$EXTNAME/travis/phpunit-$DB-travis.xml --bootstrap ./tests/bootstrap.php --coverage-clover build/logs/clover.xml
|
|
else
|
|
phpBB/vendor/bin/phpunit --configuration phpBB/ext/$EXTNAME/travis/phpunit-$DB-travis.xml --bootstrap ./tests/bootstrap.php
|
|
fi
|