-
Notifications
You must be signed in to change notification settings - Fork 73
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
test: SANDBOX-629: refactor TestPromoteSpace #983
test: SANDBOX-629: refactor TestPromoteSpace #983
Conversation
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.
Looks good 👍
I tried to propose a small variation.
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.
looks good, just one suggestion for simplification
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 job 👍
Thanks for addressing my comments.
/retest |
/retest
|
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 👍
/retest
|
Quality Gate passedIssues Measures |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: alexeykazakov, MatousJobanek, mfrancisc, rsoaresd The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
187ad84
into
codeready-toolchain:master
Description
When we create standalone spaces, we sporadically face flakiness since we currently do not make sure that the SpaceBinding is created along with Space. So, when we create SpaceBinding in a loop with space, we sporadically face flakiness because the space binding controller does not find the space at time - because the space is deleted by the space controller since it did not find the SpaceBinding at time- and for that reason it will delete the SpaceBinding and it will be not found.
To avoid it, we can remove unnecessary standalone space creation, which is the case of the
TestPromoteSpace
test.Job example :
Issue ticket number and link
SANDBOX-629