storlets/.unittests
Kota Tsuyuzaki 8505cbeed8 Prep works for Py3 gate
set tox.ini to py34/py35 environment which is a part of unittest which
is runnable with py3 and fix some syntax errors from py3 to run them.

Change-Id: I30744101c3c930e18a58e22a383c47f7ca73c6e8
2016-09-08 11:54:48 +09:00

10 lines
170 B
Bash
Executable File

#!/bin/bash
SRC_DIR=$(python -c "import os; print(os.path.dirname(os.path.realpath('$0')))")
cd ${SRC_DIR}/tests/unit
nosetests --exe -v $@
rvalue=$?
cd -
exit $rvalue