You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think there is a small issue in 1.0.2 when using phpunit 5 or 6. With phpunit7 there is no problem.
version 1.0.2 is the last one supporting php 5.6
The cause is the presence of <exclude>./_ci_phpunit_test/</exclude> in phpunit.xml
If there is this line and if we installed with --from-composer , phpunit will fail with the error below.
This is because the dir application/tests/_ci_phpunit_test/ doesn't exist in that case. Probably it is more of a phpunit bug, but I'm not sure this would ever be fixed there.
I think there is a small issue in 1.0.2 when using phpunit 5 or 6. With phpunit7 there is no problem.
version 1.0.2 is the last one supporting php 5.6
The cause is the presence of
<exclude>./_ci_phpunit_test/</exclude>
in phpunit.xmlIf there is this line and if we installed with
--from-composer
, phpunit will fail with the error below.This is because the dir application/tests/_ci_phpunit_test/ doesn't exist in that case. Probably it is more of a phpunit bug, but I'm not sure this would ever be fixed there.
Error:
Workaround is:
<exclude>./_ci_phpunit_test/</exclude>
line in phpunit.xml when installed with '--from-composer'The text was updated successfully, but these errors were encountered: