This repository has been archived by the owner on Sep 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 42
chore: move skip responsibility to the automation, not the CI #528
Merged
Conversation
This file contains 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
The CI logs reflect the changes are positive. Will be able to merge if the CI is green |
I ran the CI job setting the new Jenkins input parameter to I'm gonna trigger the CI for the PR again, and if it passes, will merge. |
jenkins run the tests please |
mdelapenya
commented
Dec 3, 2020
STACK_VERSION?= | ||
PICKLES_VERSION?="2.20.1" | ||
VERSION_VALUE=`cat ../cli/VERSION.txt` | ||
|
||
ifneq ($(TAGS),) | ||
TAGS_FLAG=--tags | ||
ifeq ($(SKIP_SCENARIOS),true) | ||
## We always want to skip scenarios tagged with @skip | ||
TAGS+= && ~skip |
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.
I quoted the value here, but it ended up adding them to the value instead
cachedout
approved these changes
Dec 3, 2020
mdelapenya
added a commit
to mdelapenya/e2e-testing
that referenced
this pull request
Dec 4, 2020
…c#528) * chore: move skip responsibility to the automation, not the CI * chore: support skipping scenarios from Jenkins UI
mdelapenya
added a commit
to mdelapenya/e2e-testing
that referenced
this pull request
Dec 4, 2020
…c#528) * chore: move skip responsibility to the automation, not the CI * chore: support skipping scenarios from Jenkins UI
mdelapenya
added a commit
that referenced
this pull request
Dec 4, 2020
* chore: move skip responsibility to the automation, not the CI * chore: support skipping scenarios from Jenkins UI
mdelapenya
added a commit
that referenced
this pull request
Dec 4, 2020
* chore: move skip responsibility to the automation, not the CI * chore: support skipping scenarios from Jenkins UI
8 tasks
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
What does this PR do?
It moves the ability to skip scenarios tagged as
@skip
from the CI to the automation.Why is it important?
Now it's possible to decide whether to skip scenarios or not, setting it to true (do skip) by default.
Checklist
make notice
in the proper directory)Author's Checklist
How to test this PR locally
Do not skip scenarios:
Skip scenarios (default):
Related issues
Follow-ups