-
Notifications
You must be signed in to change notification settings - Fork 6
HYPERFLEET-486 | fix: adjust labels #13
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
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,35 +1,33 @@ | ||
| package labels | ||
|
|
||
| // Priority labels - Business value dimension: determines failure handling priority | ||
| // Severity labels - Business Impact Dimension: Describes the severity of failure if the functionality is broken | ||
| const ( | ||
| Tier0 = "tier0" // Critical path: fix immediately, blocks merge | ||
| Tier1 = "tier1" // Important: non-critical but frequently used, fix within 24h | ||
| Tier2 = "tier2" // Edge case: low-frequency scenarios, run in scheduled jobs only | ||
| Tier0 = "tier0" // Critical: Core user journey broken, fix immediately, blocks release | ||
| Tier1 = "tier1" // Major: Important features affected, should be addressed | ||
| Tier2 = "tier2" // Minor: Edge cases or low-frequency scenarios, can be deferred | ||
| ) | ||
|
|
||
| // Stability labels - Test quality dimension: determines CI gate policy | ||
| const ( | ||
| Stable = "stable" // Production-ready: stable and reliable, must pass to merge (Blocking) | ||
| Informing = "informing" // Observation period: new test onboarding (Non-blocking) | ||
| Flaky = "flaky" // Known unstable: quarantined for investigation | ||
| ) | ||
| // const ( | ||
| // Stable = "stable" // Production-ready: stable and reliable, must pass to merge (Blocking) | ||
| // Informing = "informing" // Observation period: new test onboarding (Non-blocking) | ||
| // Flaky = "flaky" // Known unstable: quarantined for investigation | ||
| // ) | ||
|
|
||
| // Scenario labels - Test path dimension: describes test design intent | ||
| const ( | ||
| HappyPath = "happy-path" // Normal workflow: ideal path | ||
| Negative = "negative" // Error handling: edge cases and failure scenarios | ||
| Scale = "scale" // Performance: stress tests or large-scale resource scenarios | ||
| // HappyPath = "happy-path" // Normal workflow: ideal path | ||
| Negative = "negative" // Error handling: edge cases and failure scenarios | ||
| Performance = "perf" // Performance: stress tests or large-scale resource scenarios | ||
| ) | ||
|
|
||
| // Functionality labels - Feature category dimension: describes test coverage target | ||
| const ( | ||
| Lifecycle = "lifecycle" // Full lifecycle: Create -> Ready -> Delete | ||
| Upgrade = "upgrade" // Version compatibility: smooth upgrades | ||
| Upgrade = "upgrade" // Version compatibility: smooth upgrades | ||
| ) | ||
|
|
||
| // Constraint labels - Execution constraint dimension: determines scheduling strategy | ||
| const ( | ||
| Serial = "serial" // Must run serially: cannot run in parallel | ||
| Disruptive = "disruptive" // Destructive testing: fault injection | ||
| Slow = "slow" // Long-running: execution time exceeds 5-10 minutes | ||
| ) |
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
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
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.
Uh oh!
There was an error while loading. Please reload this page.