1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-08 12:12:48 +01:00

Working on TravisCI

This commit is contained in:
Hillel Coren 2016-02-18 12:11:09 +02:00
parent 869febc1d3
commit f060798721
4 changed files with 5 additions and 9 deletions

View File

@ -1,6 +1,6 @@
APP_ENV=production
APP_DEBUG=false
APP_URL=http://ninja.dev
APP_URL=http://127.0.0.1
APP_CIPHER=rijndael-128
APP_KEY=SomeRandomString

View File

@ -8,10 +8,6 @@ php:
# - 7.0
# - hhvm
addons:
hosts:
- ninja.dev
cache:
directories:
- vendor
@ -51,13 +47,13 @@ before_script:
- 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
- php artisan serve --port=8000 & # '&' allows to run in background
# Start PhantomJS
- phantomjs --webdriver=4444 & # '&' allows to run in background
# Give it some time to start
- sleep 5
# Make sure the app is up-to-date
- curl -L http://ninja.dev:8000/update
- curl -L http://127.0.0.1:8000/update
script:
- php ./vendor/codeception/codeception/codecept run --html --debug

View File

@ -2,7 +2,7 @@
// This is global bootstrap for autoloading
use Codeception\Util\Fixtures;
Fixtures::add('url', 'http://ninja.dev:8000');
Fixtures::add('url', 'http://127.0.0.1:8000');
Fixtures::add('username', 'user@example.com');
Fixtures::add('password', 'password');

View File

@ -8,7 +8,7 @@ class_name: AcceptanceTester
modules:
enabled:
- WebDriver:
url: 'http://ninja.dev:8000'
url: 'http://127.0.0.1:8000'
host: 127.0.0.1
window_size: 1024x768
wait: 5