contao / test-case

[READ-ONLY] Contao Test Case
6 stars 4 forks source link

Consider dropping the app's var folder in FunctionalTestCase#tearDownAfterClass #6

Closed m-vo closed 4 years ago

m-vo commented 4 years ago

After running functional tests, the %projectDir%/var folder will contain log/cache/assets/... entries which could be cleaned up.

leofeyer commented 4 years ago

That would not really help, as other tools such as PhpStan also boot up Symfony and fill the var folder. The only solution so far was to ignore the folder in the .gitignore file of the core bundle.

https://github.com/contao/contao/blob/master/core-bundle/.gitignore

m-vo commented 4 years ago

Sounds legit to me. Imo we can close this then.