From 11819a3dad6d629272c1ff694b1da2c56cb2ce15 Mon Sep 17 00:00:00 2001 From: Alexander Dokuchaev Date: Wed, 18 Dec 2024 13:52:37 +0200 Subject: [PATCH 1/3] fix gha --- .github/workflows/examples.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/examples.yml b/.github/workflows/examples.yml index e202463f74b..344ad0f596a 100644 --- a/.github/workflows/examples.yml +++ b/.github/workflows/examples.yml @@ -70,7 +70,8 @@ jobs: - name: Test Summary if: ${{ !cancelled() }} run: | - python .github/scripts/pytest_md_summary.py pytest-results.xml >> $GITHUB_STEP_SUMMARY + pip install defusedxml==0.7.1 + python .github/scripts/pytest_md_summary.py pytest-results.xml >> $GITHUB_STEP_SUMMARY examples-win-cpu: name: Test exmaples CPU Windows [${{ matrix.group }}/4] @@ -124,5 +125,5 @@ jobs: - name: Test Summary if: ${{ !cancelled() }} run: | - pip install defusedxml==0.7.1 - python .github/scripts/pytest_md_summary.py pytest-results.xml >> $GITHUB_STEP_SUMMARY + pip install defusedxml==0.7.1 + python .github/scripts/pytest_md_summary.py pytest-results.xml >> $GITHUB_STEP_SUMMARY From 81c6a571c13b251a3b8fae66016c6f0c1bff99f5 Mon Sep 17 00:00:00 2001 From: Alexander Dokuchaev Date: Wed, 18 Dec 2024 14:02:11 +0200 Subject: [PATCH 2/3] test --- .github/workflows/examples.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/examples.yml b/.github/workflows/examples.yml index 344ad0f596a..fd08fede53d 100644 --- a/.github/workflows/examples.yml +++ b/.github/workflows/examples.yml @@ -16,6 +16,11 @@ on: description: 'Skip tests on Windows' type: boolean default: false + pull_request: + types: + - opened + - reopened + - synchronize concurrency: group: test-examples-${{ github.workflow }}-${{ github.ref }}-${{ github.event.inputs.pytest_args || '' }}-${{github.event.inputs.pull_request_number || ''}} From 08c72f1f87d302861900bf55c1cedcc46380bf84 Mon Sep 17 00:00:00 2001 From: Alexander Dokuchaev Date: Wed, 18 Dec 2024 15:55:19 +0200 Subject: [PATCH 3/3] Revert "test" This reverts commit 81c6a571c13b251a3b8fae66016c6f0c1bff99f5. --- .github/workflows/examples.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.github/workflows/examples.yml b/.github/workflows/examples.yml index fd08fede53d..344ad0f596a 100644 --- a/.github/workflows/examples.yml +++ b/.github/workflows/examples.yml @@ -16,11 +16,6 @@ on: description: 'Skip tests on Windows' type: boolean default: false - pull_request: - types: - - opened - - reopened - - synchronize concurrency: group: test-examples-${{ github.workflow }}-${{ github.ref }}-${{ github.event.inputs.pytest_args || '' }}-${{github.event.inputs.pull_request_number || ''}}