diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9dd6df2..dc9f9aa 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -64,4 +64,7 @@ jobs: conda init conda activate mcdevol_env conda install pytest - pytest tests/test_dataparsing.py + for f in `ls tests/test_*.py` + do + pytest $f + done