We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 362dfcf commit c03814eCopy full SHA for c03814e
.github/workflows/ci.yml
@@ -13,7 +13,7 @@ jobs:
13
strategy:
14
fail-fast: false
15
matrix:
16
- python-version: [3.7,3.8,3.11]
+ python-version: [3.8,3.10,3.11]
17
18
steps:
19
tests/run
@@ -5,7 +5,7 @@ runner=$1
5
dir=${BASH_SOURCE%/*}
6
cd $dir/..
7
8
-failed=0
+failed=()
9
for f in `ls ./tests/*/*py`
10
do
11
echo "Running: ${runner} $f"
@@ -17,12 +17,13 @@ do
echo "OK"
else
echo "ERROR $f"
20
- ((failed++))
+ failed+=($f)
21
fi
22
done
23
24
-if ((failed != 0))
+if ((${#failed[@]} != 0))
25
then
26
+ echo ${failed[@]}
27
exit 1
28
29
echo "All tests passed"
0 commit comments