From 9fb72314964db78304fd523c701fdbd567c16cb1 Mon Sep 17 00:00:00 2001 From: Valeriu Predoi Date: Thu, 13 Jul 2023 10:06:11 +0100 Subject: [PATCH 1/4] Update run-tests-monitor.yml --- .github/workflows/run-tests-monitor.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/run-tests-monitor.yml b/.github/workflows/run-tests-monitor.yml index 6c3685dd1b..4ff6836e21 100644 --- a/.github/workflows/run-tests-monitor.yml +++ b/.github/workflows/run-tests-monitor.yml @@ -4,6 +4,7 @@ on: push: branches: - main + - force-monitor-test # run the test only if the PR is to main # turn it on if required #pull_request: From d7f52e9e8f329c0d8a619e3aeac05c170f16b7aa Mon Sep 17 00:00:00 2001 From: Valeriu Predoi Date: Thu, 13 Jul 2023 10:23:41 +0100 Subject: [PATCH 2/4] Try an old v2 actions checkout --- .github/workflows/run-tests-monitor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-tests-monitor.yml b/.github/workflows/run-tests-monitor.yml index 4ff6836e21..31c7feceac 100644 --- a/.github/workflows/run-tests-monitor.yml +++ b/.github/workflows/run-tests-monitor.yml @@ -27,7 +27,7 @@ jobs: fail-fast: false name: Linux Python ${{ matrix.python-version }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v2 with: fetch-depth: 0 - uses: conda-incubator/setup-miniconda@v2 From 638511fc41fa2426f7ceccaa5edd5a4278d76b8f Mon Sep 17 00:00:00 2001 From: Valeriu Predoi Date: Thu, 13 Jul 2023 10:30:31 +0100 Subject: [PATCH 3/4] Fix workflow --- .github/workflows/run-tests-monitor.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run-tests-monitor.yml b/.github/workflows/run-tests-monitor.yml index 31c7feceac..29c461732c 100644 --- a/.github/workflows/run-tests-monitor.yml +++ b/.github/workflows/run-tests-monitor.yml @@ -27,7 +27,7 @@ jobs: fail-fast: false name: Linux Python ${{ matrix.python-version }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 - uses: conda-incubator/setup-miniconda@v2 @@ -44,7 +44,7 @@ jobs: - run: pip install pytest-monitor - run: pip install -e .[develop] 2>&1 | tee test_linux_artifacts_python_${{ matrix.python-version }}/install.txt - run: pytest -n 2 -m "not installation" --db ../.pymon 2>&1 | tee test_linux_artifacts_python_${{ matrix.python-version }}/test_report.txt - run: python tests/parse_pymon.py + - run: python tests/parse_pymon.py - name: Upload artifacts if: ${{ always() }} # upload artifacts even if fail uses: actions/upload-artifact@v2 From a6701e55c051018f72a7990e86b09ff711dddc37 Mon Sep 17 00:00:00 2001 From: Valeriu Predoi Date: Thu, 13 Jul 2023 10:41:01 +0100 Subject: [PATCH 4/4] Unrun GA --- .github/workflows/run-tests-monitor.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/run-tests-monitor.yml b/.github/workflows/run-tests-monitor.yml index 29c461732c..63f4d312ed 100644 --- a/.github/workflows/run-tests-monitor.yml +++ b/.github/workflows/run-tests-monitor.yml @@ -4,7 +4,6 @@ on: push: branches: - main - - force-monitor-test # run the test only if the PR is to main # turn it on if required #pull_request: