Created
April 4, 2017 08:15
-
-
Save themsaid/81c73aa7c4fd2ab89ab430624f78e9ef to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
machine: | |
pre: | |
- sudo apt-get update; USE_PRECOMPILE=true sudo -E circleci-install php 7.1.0 | |
php: | |
version: 7.1.0 | |
dependencies: | |
override: | |
- composer install --no-interaction | |
test: | |
pre: | |
- "./vendor/laravel/dusk/bin/chromedriver-linux": | |
background: true | |
- cp .env.testing .env | |
- "php artisan serve": | |
background: true | |
override: | |
- php artisan dusk | |
post: | |
- cp -r tests/Browser/console $CIRCLE_ARTIFACTS/console | |
- cp -r tests/Browser/screenshots $CIRCLE_ARTIFACTS/screenshots | |
- curl http://127.0.0.1:8000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment