Trying with a custom autoload.php

This commit is contained in:
Frédéric BISSON 2018-03-23 23:42:01 +01:00
parent e057f96085
commit f1ec3b7200
2 changed files with 6 additions and 2 deletions

View File

@ -5,5 +5,7 @@ php:
- '7.0' - '7.0'
- hhvm # on Trusty only - hhvm # on Trusty only
- nightly - nightly
before_script: composer update before_script:
script: make test - curl -sSfL -o ~/.phpenv/versions/hhvm/bin/phpunit https://phar.phpunit.de/phpunit-5.7.phar
script:
- phpunit --bootstrap autoload.php test/TplBlockTest.php

2
autoload.php Normal file
View File

@ -0,0 +1,2 @@
<?php
require "TplBlock.php";