1acbbb0c2d
We need for run_tests.sh to accept the same inputs and outputs from a CI perspective. In this case, the easiest way was just to port in run_test.py. Additionally, we need with_venv.sh to exist. Change-Id: I25e659ed796c8a70239aab610f5b014b35443b67
5 lines
84 B
Bash
Executable File
5 lines
84 B
Bash
Executable File
#!/bin/bash
|
|
TOOLS=`dirname $0`
|
|
VENV=$TOOLS/../.venv
|
|
source $VENV/bin/activate && $@
|