Skip to content

Commit

Permalink
coverage reports for pytest calls where it makes sense possibly
Browse files Browse the repository at this point in the history
  • Loading branch information
ilaflott committed Oct 4, 2024
1 parent ec6b459 commit b26bc28
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/create_test_conda_env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,23 +44,23 @@ 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."; \
cd -;
# 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."; \
cd -;
# 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."; \
Expand Down

0 comments on commit b26bc28

Please sign in to comment.