Issue :
We recently set up test coverage analysis for our backend code. Currently, we do not require test coverage for the frontend base code. When a Pull Request (PR) involves backend code only, everything works as expected. However, when a PR involves frontend code, we encounter a timeout, which is expected since we are not sending the coverage report to the analyzer for the frontend.
Question:
Is it possible to exclude the frontend base code from the test coverage analyzer only? Using exclude_pattern does not seem to be the solution because it would exclude /frontend from all analyzers we use, including JS, Docker, etc.