提交 1606dbbd 编写于 作者: Z Zeyu Chen
#!/bin/bash
set -o errexit
base_path=$(cd `dirname $0`/..; pwd)
test_case_path=${base_path}/tests
export PYTHONPATH=$base_path:$PYTHONPATH
cd ${base_path}
pip install -r requirements.txt
cd ${test_case_path}
# only run python test case
for test_file in `ls | grep \.py`
do
python $test_file
done
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册