turn on output for debug.

This commit is contained in:
Shuduo Sang 2020-07-08 15:55:10 +08:00
parent 85ddff090a
commit 44bc7056da
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ function runPyCaseOneByOne {
if [[ $line != *sleep* ]]; then
case=`echo $line|awk '{print $NF}'`
start_time=`date +%s`
$line > /dev/null 2>&1 && \
$line && \
echo -e "${GREEN}$case success${NC}" | tee -a pytest-out.log || \
echo -e "${RED}$case failed${NC}" | tee -a pytest-out.log
end_time=`date +%s`