"tests/vscode:/vscode.git/clone" did not exist on "c896b841e48b65e561800f829c546f4cf047e634"
Commit b6bb00b4 authored by Hongkun Yu's avatar Hongkun Yu Committed by A. Unique TensorFlower
Browse files

Internal change

PiperOrigin-RevId: 395116529
parent 29461a63
......@@ -46,14 +46,8 @@ py_test() {
return "${exit_code}"
}
py2_test() {
local PY_BINARY=$(which python2)
py_test "$PY_BINARY"
return $?
}
py3_test() {
local PY_BINARY=$(which python3)
local PY_BINARY=python3.9
py_test "$PY_BINARY"
return $?
}
......@@ -61,7 +55,7 @@ py3_test() {
test_result=0
if [ "$#" -eq 0 ]; then
TESTS="lint py2_test py3_test"
TESTS="lint py3_test"
else
TESTS="$@"
fi
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment