From 0b11a6bb551d25c50a665786b30c723e39289dd4 Mon Sep 17 00:00:00 2001 From: Nafies Luthfi Date: Thu, 18 Apr 2019 22:51:35 +0800 Subject: [PATCH] Update phpunit.xml Experiment for faster testing on travis-ci --- .travis.yml | 2 +- phpunit.xml | 15 +++------------ tests/CreatesApplication.php | 1 - 3 files changed, 4 insertions(+), 14 deletions(-) diff --git a/.travis.yml b/.travis.yml index debc010..91988bd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,7 +11,7 @@ before_script: - php artisan key:generate script: - - vendor/bin/phpunit + - vendor/bin/phpunit --coverage-clover build/logs/clover.xml after_success: - vendor/bin/php-coveralls -v --exclude-no-stmt diff --git a/phpunit.xml b/phpunit.xml index c32237e..075c186 100644 --- a/phpunit.xml +++ b/phpunit.xml @@ -20,23 +20,14 @@ + + - + - - - - - - 15 - - - - - diff --git a/tests/CreatesApplication.php b/tests/CreatesApplication.php index 23d8a66..00af94d 100644 --- a/tests/CreatesApplication.php +++ b/tests/CreatesApplication.php @@ -23,7 +23,6 @@ trait CreatesApplication $app = require __DIR__.'/../bootstrap/app.php'; $app->make(Kernel::class)->bootstrap(); - \Hash::setRounds(5); return $app; }