From 1541cb05aadebf69dc0803c04977a60c4f788823 Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Thu, 9 Mar 2017 18:08:12 +0200 Subject: [PATCH] Working on adding check-data to Travis --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 7a11b7f9f8..61bec2672b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -58,7 +58,6 @@ before_script: # migrate and seed the database - php artisan migrate --no-interaction - php artisan db:seed --no-interaction # default seed - - php artisan db:seed --no-interaction --class=UserTableSeeder # development seed # Start webserver on ninja.dev:8000 - php artisan serve --host=ninja.dev --port=8000 & # '&' allows to run in background # Start PhantomJS @@ -68,6 +67,7 @@ before_script: # Make sure the app is up-to-date - curl -L http://ninja.dev:8000/update - php artisan ninja:create-test-data 10 true + - php artisan db:seed --no-interaction --class=UserTableSeeder # development seed script: #- php ./vendor/codeception/codeception/codecept run --debug acceptance APICest.php