8505cbeed8
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
10 lines
170 B
Bash
Executable File
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
|