Merge "Allow dot test runners from any dir"
This commit is contained in:
3 changed files with 7 additions and 5 deletions
@@ -1,11 +1,13 @@
#!/bin/bash
cd test/functional
SRC_DIR=$(dirname 0ドル)
cd ${SRC_DIR}/test/functional
nosetests --exe $@
func1=$?
cd -
cd test/functionalnosetests
cd ${SRC_DIR}/test/functionalnosetests
nosetests --exe $@
func2=$?
cd -
@@ -1,6 +1,6 @@
#!/bin/bash
cd test/probe
cd $(dirname 0ドル)/test/probe
nosetests --exe
rvalue=$?
cd -
@@ -1,8 +1,8 @@
#!/bin/bash
cd test/unit
cd $(dirname 0ドル)/test/unit
nosetests --exe --with-coverage --cover-package swift --cover-erase $@
rvalue=$?
rm -f .coverage
cd -
exit $rvalue
exit $rvalue
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.