Skip to content

Commit

Permalink
Merge branch 'next' into 12127-addTraceidToEvents
Browse files Browse the repository at this point in the history
  • Loading branch information
richardelms committed May 16, 2024
2 parents 49ed9f2 + 9270ef9 commit 70310fc
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
6 changes: 0 additions & 6 deletions .buildkite/pipeline.full.yml
Original file line number Diff line number Diff line change
Expand Up @@ -186,8 +186,6 @@ steps:
- label: Run WebGL e2e tests for Unity 2020
timeout_in_minutes: 30
depends_on: "cocoa-webgl-2020-fixtures"
agents:
queue: opensource-mac-cocoa-11
env:
UNITY_VERSION: *2020
plugins:
Expand Down Expand Up @@ -221,8 +219,6 @@ steps:
- label: Run WebGL e2e tests for Unity 2022
timeout_in_minutes: 30
depends_on: 'cocoa-webgl-2022-fixtures'
agents:
queue: opensource-mac-cocoa-11
env:
UNITY_VERSION: *2022
plugins:
Expand All @@ -238,8 +234,6 @@ steps:
- label: Run WebGL e2e tests for Unity 2023
timeout_in_minutes: 30
depends_on: 'cocoa-webgl-2023-fixtures'
agents:
queue: opensource-mac-cocoa-11
env:
UNITY_VERSION: *2023
plugins:
Expand Down
8 changes: 8 additions & 0 deletions features/support/env.rb
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,14 @@
end
end

Before do |scenario|
# Detect if we're running the webgl tests
if Maze.config.farm.to_s.eql?('local')
# Allows each scenario to auto retry once due to instability in the local browser
scenario.tags << Cucumber::Core::Test::Tag.new(nil, '@retry')
end
end

After do |scenario|
next if scenario.status == :skipped

Expand Down

0 comments on commit 70310fc

Please sign in to comment.