From b26bc2837e0b495430967ea403d3b82ca2f2cc6d Mon Sep 17 00:00:00 2001 From: Ian Laflotte Date: Fri, 4 Oct 2024 13:32:11 -0400 Subject: [PATCH] coverage reports for pytest calls where it makes sense possibly --- .github/workflows/create_test_conda_env.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/create_test_conda_env.yml b/.github/workflows/create_test_conda_env.yml index 4c82e19..f57503a 100644 --- a/.github/workflows/create_test_conda_env.yml +++ b/.github/workflows/create_test_conda_env.yml @@ -44,7 +44,7 @@ jobs: # pytest unittests for regrid-xy cd app/regrid-xy && \ - pytest -v -v -rx ./t || \ + pytest -v -v -rx --cov=regrid_xy ./t || \ echo "pytest unittests for regrid-xy failed"; \ pylint -v || \ echo "pylint threw non-zero exit code."; \ @@ -52,7 +52,7 @@ jobs: # pytest unittests for make-timeseries cd app/make-timeseries && \ - pytest -v -v -rx ./test || \ + pytest -v -v -rx --cov=bin/make-timeseries ./test || \ echo "pytest for make-timeseries failed"; \ pylint -v || \ echo "pylint threw non-zero exit code."; \ @@ -60,7 +60,7 @@ jobs: # pytest unittests for remap-pp-components cd app/remap-pp-components && \ - pytest -v -v -rx ./t/ || \ + pytest -v -v -rx --cov=bin/remap-pp-components ./t/ || \ echo "pytest for remap-pp-components failed"; \ pylint -v || \ echo "pylint threw non-zero exit code."; \