advanced-python-homework-2023/interpreters/test_full.sh
2023-10-06 13:14:14 +03:00

13 lines
287 B
Bash

#!/bin/bash
interpreterCmd=$1;
interpreterTitle=$2;
{
time $interpreterCmd test_full_with_types.py &&
time $interpreterCmd test_full_no_types.py &&
time $interpreterCmd test_full_np.py;
} 2> results/${interpreterTitle}_full.txt;
$interpreterCmd test.py $interpreterTitle;