5 lines
219 B
Bash
5 lines
219 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
set -ex
|
||
|
|
REPORT_PATH="${REPORT_PATH:-./}"
|
||
|
|
nosetests --with-xunit --with-coverage --cover-xml --cover-xml-file $REPORT_PATH/coverage.xml --xunit-file=$REPORT_PATH/nosetests.xml --cover-package=talon .
|