PR #457 contains a commit adding a test to the config.
This is the second time I've had to create a separate PR to add tests which were not automatically being run. Also see #366.
I'd like to propose removing the separate test suite configurations in favour of a generic setup which will automatically discover any new tests added to the tests directory.
The PHPUnit --filter CLI argument is powerful enough to handle selective running of the tests for most PHPUnit versions.
If needs be, for older PHPUnit versions, a @group annotation could be added to various tests to still allow them to be run in groups alike to the original testsuites.
PR #457 contains a commit adding a test to the config.
This is the second time I've had to create a separate PR to add tests which were not automatically being run. Also see #366.
I'd like to propose removing the separate test suite configurations in favour of a generic setup which will automatically discover any new tests added to the
testsdirectory.The PHPUnit
--filterCLI argument is powerful enough to handle selective running of the tests for most PHPUnit versions.If needs be, for older PHPUnit versions, a
@groupannotation could be added to various tests to still allow them to be run in groups alike to the original testsuites.