Use coverage-master for tag events to skip CloudFormation actions tests#214
Merged
Jordi Soucheiron (jsoucheiron) merged 3 commits intomasterfrom Feb 17, 2026
Merged
Conversation
Copilot started work on behalf of
Jordi Soucheiron (jsoucheiron)
February 17, 2026 10:11
View session
Co-authored-by: jsoucheiron <1830262+jsoucheiron@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Run tests on library release tag event
Use coverage-master for tag events to skip CloudFormation actions tests
Feb 17, 2026
Jordi Soucheiron (jsoucheiron)
approved these changes
Feb 17, 2026
Copilot started reviewing on behalf of
Jordi Soucheiron (jsoucheiron)
February 17, 2026 10:17
View session
Ignacio Bolonio (ignaciobolonio)
previously approved these changes
Feb 17, 2026
There was a problem hiding this comment.
Pull request overview
This PR modifies the CI workflow to skip CloudFormation actions tests during tag-triggered builds. Tag pushes now use make coverage-master (which excludes tests marked with @pytest.mark.actions) instead of make coverage, preventing failures when the local CloudFormation actions list is stale during release workflows.
Changes:
- Updated conditional logic to run
make coverage-masterfor both master branch and tag events - Ensures feature branches and PRs still run full test coverage including actions tests
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Jordi Soucheiron (jsoucheiron)
approved these changes
Feb 17, 2026
Ignacio Bolonio (ignaciobolonio)
approved these changes
Feb 17, 2026
AbhinavkishoreGV (ABHINAVKISHOREGV)
approved these changes
Feb 17, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Tag pushes trigger the lint-and-test workflow, which runs
make coverageby default. This includes tests that validate CloudFormation actions against AWS endpoints, causing failures when the local actions list is stale during release workflows.Changes
Modified
.github/workflows/lint-and-test.ymlto usemake coverage-masterfor tag events:make coverage: Runs for feature branches and PRs (includes all tests)make coverage-master: Runs for master branch and tags (skips@pytest.mark.actionstests via-m "not actions")Updated conditionals:
Checklist
💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.