I'm working on a project that has some visual regression tests (using Playwright). After adding the homebrew feature from this repo (which was the only homebrew feature that worked π
), my VR tests started failing because the fonts suddenly changed.
Normally this wouldn't be an issue (I could just update the VR snapshots). Unfortunately, my CI environment uses the same devcontainer image without any features, so this will cause the VR snapshots to always be different.
I tracked the issue down to the homebrew install script adding fonts-dejavu-core as a dependency:
I was wondering, is it really needed as a dependency for homebrew? If not, could it be removed, or ignored with an option? Thanks π
I'm working on a project that has some visual regression tests (using Playwright). After adding the homebrew feature from this repo (which was the only homebrew feature that worked π ), my VR tests started failing because the fonts suddenly changed.
Normally this wouldn't be an issue (I could just update the VR snapshots). Unfortunately, my CI environment uses the same devcontainer image without any features, so this will cause the VR snapshots to always be different.
I tracked the issue down to the homebrew install script adding
fonts-dejavu-coreas a dependency:I was wondering, is it really needed as a dependency for homebrew? If not, could it be removed, or ignored with an option? Thanks π