From 0ea27cb8586bba97cd6cadc683788239b318ad27 Mon Sep 17 00:00:00 2001 From: Martin Robinson Date: Thu, 29 Aug 2024 10:16:54 +0200 Subject: [PATCH] Debugging --- .github/workflows/linux.yml | 2 +- python/wpt/test.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 6a0002361c85e..c7f8a212983fc 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -103,7 +103,7 @@ jobs: - name: Smoketest run: xvfb-run python3 ./mach smoketest --${{ inputs.profile }} - name: Script tests - run: ./mach test-scripts + run: ./mach test-scripts -v - name: Unit tests if: ${{ inputs.unit-tests }} uses: nick-fields/retry@v3 diff --git a/python/wpt/test.py b/python/wpt/test.py index 742796035c6e1..fa74511655ebf 100644 --- a/python/wpt/test.py +++ b/python/wpt/test.py @@ -145,6 +145,7 @@ def search(): head_ref = f"{params['author']}:{params['head']}" for pull_request in self.pulls: + print(f"search {head_ref} --> {pull_request.head}") if pull_request.head == head_ref: return json.dumps({ "total_count": 1,