-
Notifications
You must be signed in to change notification settings - Fork 14
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
Use test-level tags in CI #850
Conversation
Assigns a test level to each integration test and ensures that the integration tests fail if a tag is missing for a test. Also, enables the tags in the CI
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.
Very useful change, thanks!
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.
LGTM.
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.
Great work, thanks a lot @bschimke95! LGTM. Just minor comments and questions.
I'm not sure I fully understand which tag should be applied to which each test.
AFAIU, we mark the core/critical functionalities with PULL_REQUEST
, less critical ones with NIGHTLY
and even less critical ones with WEEKLY
. Overall I think this is definitely the right direction and we can tune those tags as needed in the future.
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.
Thanks for introducing the tags Ben, I've left a couple of opinions on pr/daily/weekly.
Summary
Adds a test level to each integration test and use them in the CI
Rationale
The integration tests for each PR take way too long and test a lot of things that are very unlikely to break. It is sufficient to run those in the nightly test runs or even weekly (e.g. for conformance tests).
Changes
Note that there is currently no weekly CI but I already added the tag for it. This is work for later.