From 44161e0558032534614249eb424edf35f02003ff Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Tue, 26 Aug 2025 00:35:06 +0200 Subject: [PATCH] chore: fix Maven test commands (#1832) --- CONTRIBUTING.md | 4 ++-- pom.xml | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index ab3033cd..0fa9b18c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -32,9 +32,9 @@ scripts/download_driver.sh mvn compile mvn test # Executing a single test -BROWSER=chromium mvn test --projects=playwright -Dtest=TestPageNetworkSizes#shouldHaveTheCorrectResponseBodySize +BROWSER=chromium mvn test -Dtest=TestPageNetworkSizes#shouldHaveTheCorrectResponseBodySize # Executing a single test class -BROWSER=chromium mvn test --projects=playwright -Dtest=TestPageNetworkSizes +BROWSER=chromium mvn test -Dtest=TestPageNetworkSizes ``` ### Generating API diff --git a/pom.xml b/pom.xml index d6dcf464..3163fa91 100644 --- a/pom.xml +++ b/pom.xml @@ -170,6 +170,7 @@ junit.jupiter.execution.parallel.config.dynamic.factor=0.5 + false false ${env.PW_MAX_RETRIES}