Skip to content

Commit

Permalink
exit code guard for data_lineage test. fix test call for make-timeseries
Browse files Browse the repository at this point in the history
  • Loading branch information
ilaflott committed Oct 4, 2024
1 parent 316fd3e commit e85da5e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/create_test_conda_env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ jobs:
cylc lint -v || echo "cylc lint threw non-zero exit code"
# unittests for data_lineage
cd data_lineage && python -m unittest discover -s test -v; cd -;
cd data_lineage && python -m unittest discover -s test -v || echo "data_lineage unittest failed."; cd -;
# pytest unittests for make-timeseries
cd app/make-timeseries && pytest -v -v -x ./tests/ || echo "pytest for make-timeseries failed"; cd -;
cd app/make-timeseries && pytest -v -v -x ./test || echo "pytest for make-timeseries failed"; cd -;
# pytest unittests for remap-pp-components
cd app/remap-pp-components && pytest -v -v -x ./t/ || echo "pytest for remap-pp-components failed"; cd -;
Expand Down

0 comments on commit e85da5e

Please sign in to comment.