-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[cmd/mdatagen] Move component config test from cmd/builder #9940
Conversation
f51221a
to
2797e5f
Compare
cc @swiatekm-sumo |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #9940 +/- ##
==========================================
- Coverage 91.95% 91.78% -0.17%
==========================================
Files 357 357
Lines 16501 16499 -2
==========================================
- Hits 15173 15144 -29
- Misses 1000 1032 +32
+ Partials 328 323 -5 ☔ View full report in Codecov by Sentry. |
59be8af
to
fc2385f
Compare
The generated tests are skipped in contrib because they cause the CI timeouts. We moved the lifecycle tests to the tests generated by mdatagen, but the config/factory smoke tests are still part of the files generated by cmd/builder. Recently, loadbalancing exporter got an invalid camelCase config field because of this coverage gap. This change moves the config/factory tests from cmd/builder to cmd/mdatagen. So they are always generated for every component even if they are not used in any collector bundle.
fc2385f
to
e479f1d
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice 👍🏻
These files are not generated by the builder anymore and replaced by the tests generated by mdatagen for each component independently, see open-telemetry/opentelemetry-collector#9940
The tests generated by cmd/builder are skipped in contrib because they cause the CI timeouts. We moved the lifecycle tests to the tests generated by mdatagen, but the config/factory smoke tests are still part of the files generated by cmd/builder.
Recently, the loadbalancing exporter got an invalid camelCase config field because of this coverage gap.
This change moves the config/factory tests from cmd/builder to cmd/mdatagen. So, they are always generated for every component, even if not used in any collector bundle.