-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Consolidate parallel and sequential lanes
Run the e2e handler test lane only once, configured to use default 50% of worker nodes to process NNCPs concurrently. For that reason, setting number of nodes to 5 so that 2 nodes run concurrently (4/2 == 2) Signed-off-by: Radim Hrazdil <[email protected]>
- Loading branch information
Radim Hrazdil
committed
Mar 25, 2021
1 parent
73dab1f
commit bffe21e
Showing
4 changed files
with
6 additions
and
11 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -162,7 +162,7 @@ var _ = Describe("[rfe_id:3503][crit:medium][vendor:[email protected]][level:com | |
resetDesiredStateForNodes() | ||
}) | ||
|
||
It("[test_id:3795][parallel] should have Failing ConditionType set to true", func() { | ||
It("[test_id:3795] should have Failing ConditionType set to true", func() { | ||
for _, node := range nodes { | ||
By(fmt.Sprintf("Check %s failing state is reached", node)) | ||
enactmentConditionsStatusEventually(node).Should( | ||
|
@@ -195,7 +195,7 @@ var _ = Describe("[rfe_id:3503][crit:medium][vendor:[email protected]][level:com | |
wg.Wait() | ||
}) | ||
|
||
It("[test_id:3795][sequential] should have one Failing the rest Aborted ConditionType set to true", func() { | ||
It("[test_id:3795] should have one Failing the rest Aborted ConditionType set to true", func() { | ||
checkEnactmentCounts := func(policy string) { | ||
failingConditions := 0 | ||
abortedConditions := 0 | ||
|
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
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