2010-07-12 17:03:45 -05:00
|
|
|
#!/bin/bash
|
|
|
|
|
2012-12-17 09:45:46 -08:00
|
|
|
cd $(dirname $0)/test/unit
|
|
|
|
nosetests --exe --with-coverage --cover-package swift. --cover-erase $@
|
2012-04-18 15:12:10 +03:00
|
|
|
rvalue=$?
|
2010-07-12 17:03:45 -05:00
|
|
|
rm -f .coverage
|
2012-03-12 21:54:31 +00:00
|
|
|
cd -
|
2012-11-26 09:58:09 -06:00
|
|
|
exit $rvalue
|