1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-18 23:42:25 +02:00

Working on TravisCI

This commit is contained in:
Hillel Coren 2016-02-18 12:26:21 +02:00
parent d3dce0f3a5
commit c834baa1b8
4 changed files with 6 additions and 6 deletions

View File

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

View File

@ -10,7 +10,7 @@ php:
addons:
hosts:
- localhost
- ninja.dev
cache:
directories:
@ -51,13 +51,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=localhost --port=8000 & # '&' allows to run in background
- php artisan serve --host=ninja.dev --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://localhost:8000/update
- curl -L http://ninja.dev: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://127.0.0.1:8000');
Fixtures::add('url', 'http://ninja.dev: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://127.0.0.1:8000'
url: 'http://ninja.dev:8000'
host: 127.0.0.1
window_size: 1024x768
wait: 5