Run tools tests in CI.

pull/2482/head
Alexis 5 months ago
parent f1df3ea753
commit 94fc82cc74
No known key found for this signature in database
  1. 4
      .github/scripts/tool_test_runner.sh

@ -2,11 +2,11 @@
# used to pass --cov=$path and --cov-append to pytest # used to pass --cov=$path and --cov-append to pytest
if [ "$1" != "" ]; then if [ "$1" != "" ]; then
pytest "$1" tests/tools/read-storage/test_read_storage.py pytest "$1" tests/tools
status_code=$? status_code=$?
python -m coverage report python -m coverage report
else else
pytest tests/tools/read-storage/test_read_storage.py pytest tests/tools
status_code=$? status_code=$?
fi fi

Loading…
Cancel
Save