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

Updated Travis config

This commit is contained in:
Hillel Coren 2016-02-22 21:58:16 +02:00
parent e6141abde4
commit c9f38699d2
5 changed files with 6 additions and 6 deletions

View File

@ -54,13 +54,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 & # '&' 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://ninja.dev/update
- curl -L http://ninja.dev:8000/update
script:
- php ./vendor/codeception/codeception/codecept run --debug acceptance AllPagesCept.php

View File

@ -72,7 +72,7 @@ class Utils
public static function requireHTTPS()
{
if (Request::root() === 'http://ninja.dev') {
if (Request::root() === 'http://ninja.dev:8000') {
return false;
}

View File

@ -2,7 +2,7 @@
// This is global bootstrap for autoloading
use Codeception\Util\Fixtures;
Fixtures::add('url', 'http://ninja.dev');
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://ninja.dev/'
url: 'http://ninja.dev:8000/'
window_size: 1024x768
wait: 5
browser: firefox

View File

@ -9,7 +9,7 @@ modules:
enabled:
- \Helper\Functional
- PhpBrowser:
url: 'http://ninja.dev'
url: 'http://ninja.dev:8000'
curl:
CURLOPT_RETURNTRANSFER: true
- Laravel5: