Skip to content

Commit

Permalink
Fixed possible issue in coverage reporting.
Browse files Browse the repository at this point in the history
  • Loading branch information
lauri-codes committed Jan 2, 2022
1 parent 4f5c7c6 commit 79a1393
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CI/test.sh
@@ -1,9 +1,9 @@
#!/usr/bin/env bash
cd ../regtests
export COVERAGE_FILE="../.coverage"
coverage run --source="../dscribe" testrunner.py
coverage run --source="dscribe" testrunner.py
unittest=$?
coverage run -m --source="../dscribe" --append pytest
coverage run -m --source="dscribe" --append pytest
pytest=$?
if [ "$unittest" != 0 ] || [ "$pytest" != 0 ]; then
exit 1
Expand Down

0 comments on commit 79a1393

Please sign in to comment.