Skip to content

Commit 4b9974a

Browse files
DSET-1556: Run integration tests fewer times (#15)
1 parent c13b49c commit 4b9974a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/code-quality.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,8 @@ jobs:
8484
if: github.ref_name == 'main'
8585
run: |
8686
set -e;
87-
for i in `seq 1 30`; do
88-
echo "Running test ${i} / 50";
87+
N=10;
88+
for i in `seq 1 ${N}`; do
89+
echo "Running test ${i} / ${N}";
8990
make test;
9091
done;

0 commit comments

Comments
 (0)