Skip to content
Snippets Groups Projects
Commit 1f1dd95d authored by Jan Čermák's avatar Jan Čermák
Browse files

generate coverage only for local modules

parent 8b39f608
Branches
Tags
No related merge requests found
#!/bin/sh
if [ "$1" == "coverage" ]; then
shift
nosetests --with-coverage --cover-xml --cover-xml-file=/tmp/foris_coverage.xml --cover-erase --verbose $@
nosetests --with-coverage --cover-xml --cover-xml-file=/tmp/foris_coverage.xml --cover-erase --cover-package=. --verbose $@
else
nosetests --verbose $@
fi
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment