Edit CI.yml file to fix failing syntax

This commit is contained in:
aya 2025-05-18 22:09:26 +03:00
parent 94cf62d436
commit 878c57ae95

View File

@ -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