From f36d1cedb16928386576b8d3e77aa09ae8ac437f Mon Sep 17 00:00:00 2001 From: Leif Denby Date: Wed, 13 Nov 2024 18:32:31 +0100 Subject: [PATCH] more verbose ci/cd testing and update meps cache --- .github/workflows/ci-pdm-install-and-test-cpu.yml | 8 ++++---- .github/workflows/ci-pdm-install-and-test-gpu.yml | 8 ++++---- .github/workflows/ci-pip-install-and-test-cpu.yml | 8 ++++---- .github/workflows/ci-pip-install-and-test-gpu.yml | 8 ++++---- 4 files changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/ci-pdm-install-and-test-cpu.yml b/.github/workflows/ci-pdm-install-and-test-cpu.yml index c5da88cc..c7f72cd3 100644 --- a/.github/workflows/ci-pdm-install-and-test-cpu.yml +++ b/.github/workflows/ci-pdm-install-and-test-cpu.yml @@ -40,16 +40,16 @@ jobs: uses: actions/cache/restore@v4 with: path: data - key: ${{ runner.os }}-meps-reduced-example-data-v0.1.0 + key: ${{ runner.os }}-meps-reduced-example-data-v0.2.0 restore-keys: | - ${{ runner.os }}-meps-reduced-example-data-v0.1.0 + ${{ runner.os }}-meps-reduced-example-data-v0.2.0 - name: Run tests run: | - pdm run pytest + pdm run pytest -vv -s - name: Save cache data uses: actions/cache/save@v4 with: path: data - key: ${{ runner.os }}-meps-reduced-example-data-v0.1.0 + key: ${{ runner.os }}-meps-reduced-example-data-v0.2.0 diff --git a/.github/workflows/ci-pdm-install-and-test-gpu.yml b/.github/workflows/ci-pdm-install-and-test-gpu.yml index 9ab4f379..577110a3 100644 --- a/.github/workflows/ci-pdm-install-and-test-gpu.yml +++ b/.github/workflows/ci-pdm-install-and-test-gpu.yml @@ -45,16 +45,16 @@ jobs: uses: actions/cache/restore@v4 with: path: data - key: ${{ runner.os }}-meps-reduced-example-data-v0.1.0 + key: ${{ runner.os }}-meps-reduced-example-data-v0.2.0 restore-keys: | - ${{ runner.os }}-meps-reduced-example-data-v0.1.0 + ${{ runner.os }}-meps-reduced-example-data-v0.2.0 - name: Run tests run: | - pdm run pytest + pdm run pytest -vv -s - name: Save cache data uses: actions/cache/save@v4 with: path: data - key: ${{ runner.os }}-meps-reduced-example-data-v0.1.0 + key: ${{ runner.os }}-meps-reduced-example-data-v0.2.0 diff --git a/.github/workflows/ci-pip-install-and-test-cpu.yml b/.github/workflows/ci-pip-install-and-test-cpu.yml index 81e402c5..80f821b3 100644 --- a/.github/workflows/ci-pip-install-and-test-cpu.yml +++ b/.github/workflows/ci-pip-install-and-test-cpu.yml @@ -30,16 +30,16 @@ jobs: uses: actions/cache/restore@v4 with: path: data - key: ${{ runner.os }}-meps-reduced-example-data-v0.1.0 + key: ${{ runner.os }}-meps-reduced-example-data-v0.2.0 restore-keys: | - ${{ runner.os }}-meps-reduced-example-data-v0.1.0 + ${{ runner.os }}-meps-reduced-example-data-v0.2.0 - name: Run tests run: | - python -m pytest + python -m pytest -vv -s - name: Save cache data uses: actions/cache/save@v4 with: path: data - key: ${{ runner.os }}-meps-reduced-example-data-v0.1.0 + key: ${{ runner.os }}-meps-reduced-example-data-v0.2.0 diff --git a/.github/workflows/ci-pip-install-and-test-gpu.yml b/.github/workflows/ci-pip-install-and-test-gpu.yml index ce68946a..0f189aae 100644 --- a/.github/workflows/ci-pip-install-and-test-gpu.yml +++ b/.github/workflows/ci-pip-install-and-test-gpu.yml @@ -35,16 +35,16 @@ jobs: uses: actions/cache/restore@v4 with: path: data - key: ${{ runner.os }}-meps-reduced-example-data-v0.1.0 + key: ${{ runner.os }}-meps-reduced-example-data-v0.2.0 restore-keys: | - ${{ runner.os }}-meps-reduced-example-data-v0.1.0 + ${{ runner.os }}-meps-reduced-example-data-v0.2.0 - name: Run tests run: | - python -m pytest + python -m pytest -vv -s - name: Save cache data uses: actions/cache/save@v4 with: path: data - key: ${{ runner.os }}-meps-reduced-example-data-v0.1.0 + key: ${{ runner.os }}-meps-reduced-example-data-v0.2.0