phpmyadmin/test/ci-test
Michal Čihař 2b93cf164b Do not try to run Selenium tests in normal tests run
Signed-off-by: Michal Čihař <michal@cihar.com>
2016-02-22 09:06:34 +01:00

12 lines
160 B
Bash
Executable File

#!/bin/sh
ant locales
export PHPUNIT_ARGS="--exclude-group selenium"
if [ $TRAVIS_PHP_VERSION = "hhvm" ] ; then
ant phpunit-hhvm
else
ant phpunit
fi