File: runCoverage

package info (click to toggle)
pynwb 2.8.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 44,312 kB
  • sloc: python: 17,501; makefile: 597; sh: 11
file content (19 lines) | stat: -rwxr-xr-x 295 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/ksh

# use default coverage name
COV=coverage3

cd ../..

echo ""
echo "Running Tests with Coverage:"
${COV} run --source=. test.py

echo ""
echo "Creating HTML output:"
${COV} html -d tests/coverage/htmlcov
echo ""

echo "Open <src>/coverage/htmlcov/index.html to see results."
echo ""