With laravel's package auto-discovery, the composer install fails when it tries to install Dusk as it thinks it's running in production

This commit is contained in:
Samuel 2017-12-15 05:46:59 +00:00
parent ee9ad1b1f6
commit 48e629e654
1 changed files with 1 additions and 1 deletions

View File

@ -502,8 +502,8 @@ stages:
unit_test: unit_test:
stage: test stage: test
script: script:
- composer install
- cp .env.example .env - cp .env.example .env
- composer install
- php artisan key:generate - php artisan key:generate
- php artisan migrate - php artisan migrate
- vendor/bin/phpunit - vendor/bin/phpunit