You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
143 B
Bash
13 lines
143 B
Bash
6 years ago
|
#!/bin/bash
|
||
|
|
||
|
export NOCOVERAGE=1
|
||
|
|
||
|
i=0
|
||
|
while :
|
||
|
do
|
||
|
i=$((i + 1))
|
||
|
/usr/bin/time -v ./.ci/mitogen_py24_tests.py "$@" || break
|
||
|
done
|
||
|
|
||
|
echo $i
|