From bd09d7958a5400efe75ece9eab43748679183ea9 Mon Sep 17 00:00:00 2001 From: Mark Piper Date: Thu, 17 Oct 2024 16:18:21 -0600 Subject: [PATCH] Use absolute path to working directory with bmi_tester --- .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 b8c6a7d..c64dd2f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -45,7 +45,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=examples -vvv - name: Coveralls if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.11'