diff --git a/.drone.star b/.drone.star index 4119d77c080..3b4f2b78aff 100644 --- a/.drone.star +++ b/.drone.star @@ -763,7 +763,7 @@ def stagePipelines(ctx): unit_test_pipelines = unitTests(ctx) e2e_pipelines = e2eTests(ctx) acceptance_pipelines = acceptance(ctx) - return unit_test_pipelines + pipelinesDependsOn(e2e_pipelines + acceptance_pipelines, unit_test_pipelines) + return e2e_pipelines def afterPipelines(ctx): return build(ctx) + pipelinesDependsOn(notify(), build(ctx)) diff --git a/tests/e2e/cucumber/features/smoke/admin-settings/spaces.ocis.feature b/tests/e2e/cucumber/features/smoke/admin-settings/spaces.ocis.feature index c403882a4de..039eda36b50 100644 --- a/tests/e2e/cucumber/features/smoke/admin-settings/spaces.ocis.feature +++ b/tests/e2e/cucumber/features/smoke/admin-settings/spaces.ocis.feature @@ -137,14 +137,14 @@ Feature: spaces management | id | role | | Brian | Space Admin | | Carol | Space Admin | + When "Alice" logs in And "Brian" creates the following project spaces using API | name | id | | team A | team.a | And "Carol" creates the following project spaces using API | name | id | | team B | team.b | - When "Alice" logs in - And "Alice" opens the "admin-settings" app + When "Alice" opens the "admin-settings" app And "Alice" navigates to the project spaces management page When "Alice" updates the space "team.a" name to "brian team" using the context-menu And "Alice" updates the space "team.b" name to "carol team" using the context-menu