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
Is your feature request related to a problem? Please describe.
Upgrade from 1.x to 3.x cause several issues if one doesn't read documentation carefully (like most of us do):
Old configuration liip_functional_test.cache_sqlite_db: true causes errors, when Composer run Symfony scripts:
> Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::clearCache
In ArrayNode.php line 307:
Unrecognized option "cache_db" under "liip_functional_test"
Calls to loadFixtures and loadFixtureFiles throw fatal errors when running tests:
Error: Call to undefined method […]Test::loadFixtures()
Describe the solution you'd like
Errors should show how to ease upgrading
Describe alternatives you've considered
Add a compatibility layer for old configuration, and/or throw warnings instead of a fatal error, with a link to the documentation that explain upgrade steps
Calls to loadFixtures and loadFixtureFiles should print a text like This feature has been moved to https://github.com/liip/LiipTestFixturesBundle, please install it (but only if it doesn't create conflicts when both bundle are active)
Additional context
It would be nice if we could deprecate features before removing them, but only if its doesn't require too much work.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Upgrade from 1.x to 3.x cause several issues if one doesn't read documentation carefully (like most of us do):
liip_functional_test.cache_sqlite_db: true
causes errors, when Composer run Symfony scripts:loadFixtures
andloadFixtureFiles
throw fatal errors when running tests:Describe the solution you'd like
Errors should show how to ease upgrading
Describe alternatives you've considered
loadFixtures
andloadFixtureFiles
should print a text likeThis feature has been moved to https://github.com/liip/LiipTestFixturesBundle, please install it
(but only if it doesn't create conflicts when both bundle are active)Additional context
It would be nice if we could deprecate features before removing them, but only if its doesn't require too much work.
The text was updated successfully, but these errors were encountered: