From b1888e808a8bbc2c5a87b80a1492d09184e20e88 Mon Sep 17 00:00:00 2001 From: Aidan Heerdegen Date: Fri, 5 Feb 2021 14:13:07 +1100 Subject: [PATCH] Add debugging step to find coverage file --- .github/workflows/CI.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index ca5c4e28..6f93b0df 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -47,7 +47,10 @@ jobs: run: pylint --extension-pkg-whitelist=netCDF4 -E payu - name: Run tests - run: PYTHONPATH=. pytest --cov=payu -s test; + run: | + PYTHONPATH=. pytest --cov=payu -s test; + ls -l + ls -lR test - name: Coveralls uses: coverallsapp/github-action@master