Skip to content

Commit

Permalink
Merge branch 'main' into savitha/integrate-scdl-geneformer-rebased
Browse files Browse the repository at this point in the history
  • Loading branch information
polinabinder1 authored Dec 19, 2024
2 parents fdfc18c + 6f34fad commit 40e34cc
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions ci/scripts/run_pytest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,16 @@ fi

python -m coverage erase

error=false
for dir in docs/ ./sub-packages/bionemo-*/; do
echo "Running pytest in $dir"
python -m coverage run --parallel-mode --source=bionemo \
-m pytest -v --nbval-lax --durations=0 --durations-min=60.0 "$dir"

-m pytest -v --nbval-lax --durations=0 --durations-min=60.0 "$dir" || error=true
done

python -m coverage combine
python -m coverage report --show-missing

if [ "$error" = true ]; then
exit 1
fi

0 comments on commit 40e34cc

Please sign in to comment.