check_coverage.sh 211 B

123456
  1. #!/usr/bin/env bash
  2. bash download_test_data.sh
  3. coverage run --source paddlers,$(ls -d ../tools/* | tr '\n' ',') --omit=../paddlers/models/* -m unittest discover -v
  4. coverage report
  5. coverage html -d coverage_html