From a4cc75a3aaeeecb0bba7899ce8cd0cd753749647 Mon Sep 17 00:00:00 2001 From: Leendert de Borst Date: Fri, 6 Sep 2024 23:34:16 +0200 Subject: [PATCH] Set admin test parallelism to 2 (#125) --- src/Tests/AliasVault.E2ETests/Common/ClientPlaywrightTest.cs | 3 --- src/Tests/AliasVault.E2ETests/Common/PlaywrightTest.cs | 3 +++ 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Tests/AliasVault.E2ETests/Common/ClientPlaywrightTest.cs b/src/Tests/AliasVault.E2ETests/Common/ClientPlaywrightTest.cs index 2b9725423..edc47358e 100644 --- a/src/Tests/AliasVault.E2ETests/Common/ClientPlaywrightTest.cs +++ b/src/Tests/AliasVault.E2ETests/Common/ClientPlaywrightTest.cs @@ -5,9 +5,6 @@ // //----------------------------------------------------------------------- -// Run tests in parallel with a maximum of 2 parallel tests. -[assembly: LevelOfParallelism(2)] - namespace AliasVault.E2ETests.Common; using AliasServerDb; diff --git a/src/Tests/AliasVault.E2ETests/Common/PlaywrightTest.cs b/src/Tests/AliasVault.E2ETests/Common/PlaywrightTest.cs index c56c00837..41d7a54b1 100644 --- a/src/Tests/AliasVault.E2ETests/Common/PlaywrightTest.cs +++ b/src/Tests/AliasVault.E2ETests/Common/PlaywrightTest.cs @@ -5,6 +5,9 @@ // //----------------------------------------------------------------------- +// Run tests in parallel with a maximum of 2 parallel tests. +[assembly: LevelOfParallelism(2)] + namespace AliasVault.E2ETests.Common; using Microsoft.Extensions.Configuration;