From 4172288a58a82883e39f8cf1dc6775d3d6b1a860 Mon Sep 17 00:00:00 2001 From: mcflugen Date: Thu, 17 Oct 2024 21:21:59 -0600 Subject: [PATCH] use absolute path to examples folder --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7e14823..dfbbd0f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -42,7 +42,7 @@ jobs: - name: Test run: | pytest --cov=heat --cov-report=xml:./coverage.xml -vvv - bmi-test heat:BmiHeat --config-file=./examples/heat.yaml --root-dir=./examples -vvv + bmi-test heat:BmiHeat --config-file=${{ github.workspace }}/examples/heat.yaml --root-dir=${{ github.workspace }}/examples -vvv - name: Coveralls if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.11'