Skip to content

Commit 5d489a9

Browse files
authored
chore: remove non-exposed test-retries implementation (#2928)
1 parent 3edc14f commit 5d489a9

File tree

10 files changed

+8
-665
lines changed

10 files changed

+8
-665
lines changed

.github/workflows/tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ jobs:
3737
if: matrix.os != 'ubuntu-latest'
3838
env:
3939
BROWSER: ${{ matrix.browser }}
40-
run: dotnet test ./src/Playwright.Tests/Playwright.Tests.csproj -c Debug -f net8.0 --logger:"console;verbosity=detailed" -- Playwright.Retries=1
40+
run: dotnet test ./src/Playwright.Tests/Playwright.Tests.csproj -c Debug -f net8.0 --logger:"console;verbosity=detailed"
4141
- name: Running tests (Linux)
4242
if: matrix.os == 'ubuntu-latest'
4343
env:
4444
BROWSER: ${{ matrix.browser }}
45-
run: xvfb-run dotnet test ./src/Playwright.Tests/Playwright.Tests.csproj -c Debug -f net8.0 --logger:"console;verbosity=detailed" -- Playwright.Retries=1
45+
run: xvfb-run dotnet test ./src/Playwright.Tests/Playwright.Tests.csproj -c Debug -f net8.0 --logger:"console;verbosity=detailed"

src/Playwright.MSTest/PlaywrightTest.cs

-6
Original file line numberDiff line numberDiff line change
@@ -76,12 +76,6 @@ public async Task Setup()
7676
Playwright.Selectors.SetTestIdAttribute("data-testid");
7777
}
7878

79-
[ClassInitialize(InheritanceBehavior.BeforeEachDerivedClass)]
80-
public static void ClassInitialize(TestContext context)
81-
{
82-
PlaywrightTestMethodAttribute.TestContext = context;
83-
}
84-
8579
[TestCleanup]
8680
public async Task Teardown()
8781
{

src/Playwright.MSTest/PlaywrightTestMethodAttribute.cs

-119
This file was deleted.

src/Playwright.NUnit/PlaywrightTestAttribute.cs

-150
This file was deleted.

src/Playwright.TestAdapter/PlaywrightSettingsProvider.cs

-5
Original file line numberDiff line numberDiff line change
@@ -71,11 +71,6 @@ public static float? ExpectTimeout
7171
}
7272
}
7373

74-
public static int Retries
75-
{
76-
get => _settings?.Retries ?? 0;
77-
}
78-
7974
public static BrowserTypeLaunchOptions LaunchOptions
8075
{
8176
get

0 commit comments

Comments
 (0)