Skip to content

Commit

Permalink
fix oil error loading autoload file
Browse files Browse the repository at this point in the history
  • Loading branch information
iturgeon committed Oct 27, 2022
1 parent 8a866be commit 4f1c271
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fuel/app/config/oil.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php
return array(
'phpunit' => array(
'autoload_path' => 'PHPUnit/Autoload.php' ,
# Load phpunit from the vendor path
// we're not using any autoloading paths, this is only here to prevent oil from erroring when it can't load this file
'autoload_path' => APPPATH.'classes'.DS.'materia'.DS.'log.php' ,
# and turn on the zend_extension for xdebug so we can get code coverage
'binary_path' => 'php -dzend_extension=xdebug.so '.VENDORPATH.'bin/phpunit',
),
Expand Down

0 comments on commit 4f1c271

Please sign in to comment.