9 lines
156 B
Bash
Executable File
9 lines
156 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd $(dirname $0)/test/unit
|
|
nosetests --exe --with-coverage --cover-package swift. --cover-erase $@
|
|
rvalue=$?
|
|
rm -f .coverage
|
|
cd -
|
|
exit $rvalue
|