Commit 7bbfbb09 by Carsten Brandt

skip application tests on HHVM

parent f4a9646a
...@@ -47,10 +47,15 @@ before_script: ...@@ -47,10 +47,15 @@ before_script:
script: script:
- vendor/bin/phpunit --verbose --coverage-clover=coverage.clover --exclude-group mssql,oci,wincache,xcache,zenddata - vendor/bin/phpunit --verbose --coverage-clover=coverage.clover --exclude-group mssql,oci,wincache,xcache,zenddata
- cd apps/basic && php vendor/bin/codecept run - |
- cd ../advanced/backend && ../vendor/bin/codecept run if (php --version | grep -i HHVM > /dev/null); then
- cd ../common && ../vendor/bin/codecept run echo "skipping application tests on HHVM"
- cd ../frontend && ../vendor/bin/codecept run else
cd apps/basic && php vendor/bin/codecept run
cd ../advanced/backend && ../vendor/bin/codecept run
cd ../common && ../vendor/bin/codecept run
cd ../frontend && ../vendor/bin/codecept run
fi
after_script: after_script:
- cd ../../.. - cd ../../..
......
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