From dc564a4a1a96149379b74097e42c2ff1f1b7519f Mon Sep 17 00:00:00 2001 From: Kijin Sung Date: Tue, 19 May 2020 20:56:32 +0900 Subject: [PATCH] Update .travis.yml to reorder tests and remove unnecessary commands --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 84aefd517..1280e75e2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -21,12 +21,12 @@ before_script: - mysql -u root -e "CREATE DATABASE rhymix CHARSET utf8mb4 COLLATE utf8mb4_unicode_ci" - mysql -u root -e "GRANT ALL PRIVILEGES ON rhymix.* TO travis@localhost" - mysql -u root -e "SET PASSWORD FOR travis@localhost = PASSWORD('travis'); FLUSH PRIVILEGES" - - if [[ $TRAVIS_PHP_VERSION != "7.3" ]]; then phpenv config-rm xdebug.ini; fi + - phpenv config-rm xdebug.ini - wget https://codeception.com/releases/2.3.9/codecept.phar - php -S localhost:8000 & script: + - grunt lint - php codecept.phar build - php codecept.phar run --debug --fail-fast --env travis - - grunt lint notifications: email: false