Commit b7800eca by Carsten Brandt

enabled acceptance tests for basic application

parent 5f7653b0
......@@ -12,8 +12,8 @@ services:
- mongodb
install:
# core framework:
- composer self-update && composer --version
# core framework:
# - composer require satooshi/php-coveralls 0.6.* --dev --prefer-dist
- composer install --prefer-dist
- tests/unit/data/travis/mongodb-setup.sh
......@@ -23,6 +23,8 @@ install:
# basic application:
- composer install --dev --prefer-dist -d apps/basic
- cd apps/basic && php vendor/bin/codecept build && cd ../..
- cd apps/basic/web && php -S localhost:8080 &
- cd ../../..
before_script:
- echo 'elasticsearch version ' && curl http://localhost:9200/
......@@ -32,8 +34,9 @@ before_script:
- mongo yii2test --eval 'db.addUser("travis", "test");'
script:
- vendor/bin/phpunit --coverage-text --coverage-clover tests/unit/runtime/coveralls/clover.xml --verbose --exclude-group mssql,oci,wincache,xcache,zenddata,vendor
- cd apps/basic && php vendor/bin/codecept run functional && cd ../..
# - vendor/bin/phpunit --coverage-clover tests/unit/runtime/coveralls/clover.xml --verbose --exclude-group mssql,oci,wincache,xcache,zenddata,vendor
- vendor/bin/phpunit --verbose --exclude-group mssql,oci,wincache,xcache,zenddata,vendor
- cd apps/basic && php vendor/bin/codecept run && cd ../..
#after_script:
# - php vendor/bin/coveralls
......@@ -18,7 +18,7 @@ modules:
# - WebDriver
config:
PhpBrowser:
url: 'http://localhost'
url: 'http://localhost:8080'
# WebDriver:
# url: 'http://localhost'
# browser: firefox
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment