1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 00:11:35 +02:00

Working on adding check-data to Travis

This commit is contained in:
Hillel Coren 2017-03-09 18:08:12 +02:00
parent 59b26e53ac
commit 1541cb05aa

View File

@ -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