From 878c57ae957b06652d69e352e953c525ad83e100 Mon Sep 17 00:00:00 2001 From: aya Date: Sun, 18 May 2025 22:09:26 +0300 Subject: [PATCH] Edit CI.yml file to fix failing syntax --- .github/workflows/CI.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 7a8ab47..1e21551 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -39,7 +39,9 @@ jobs: - name: Run Endurance Test run: | - go test -p=1 -v ./waku -count=1 -timeout=360m -run '^(?!TestStress).*' | tee testlogs.log + # matches every Test… function *except* TestStress + go test -p=1 -v ./waku -count=1 -timeout=360m \ + -run '^Test($|[^S]|S[^t])' | tee testlogs.log - name: Upload Test Logs uses: actions/upload-artifact@v4