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
In mezzio/mezzio-skeleton#54 we found out, that the project is not tested at all. This is due to the fact that it provides pre-install-cmd script to interact with a potential user when using composer create-project.
After the project finishes up installing the user-requested packages, it cleans-up the project which also removes the unit tests which are related to the component (as it is not needed in created projects).
This is due to the fact, that composer does not pass --no-scripts when composer install (e.g.) is being executed.
I would like to request either to add --no-scripts to the COMPOSER_ARGS or to add a way to provide additional (or exclusive) COMPOSER_ARGS to the JOB which overrule the existing COMPOSER_ARGS.
Feedback is very welcome.
The text was updated successfully, but these errors were encountered:
Feature Request
Summary
In mezzio/mezzio-skeleton#54 we found out, that the project is not tested at all. This is due to the fact that it provides
pre-install-cmd
script to interact with a potential user when usingcomposer create-project
.After the project finishes up installing the user-requested packages, it cleans-up the project which also removes the unit tests which are related to the component (as it is not needed in created projects).
This is due to the fact, that composer does not pass
--no-scripts
whencomposer install
(e.g.) is being executed.I would like to request either to add
--no-scripts
to theCOMPOSER_ARGS
or to add a way to provide additional (or exclusive)COMPOSER_ARGS
to the JOB which overrule the existingCOMPOSER_ARGS
.Feedback is very welcome.
The text was updated successfully, but these errors were encountered: