Skip to content
This repository was archived by the owner on Mar 16, 2026. It is now read-only.

Commit b11a110

Browse files
authored
test: change compliance test rerun condition regex string (#982)
* test: change compliance test rerun condition regex string * try sys test * add sleep to time * change exceed rate limit code to 400 * change rerun condition format * delete compliance tests to make it faster * stop on first fail * add rerun condition * change rerun condition format * add back the deleted tests * remove investigation changes and add owlbot change * black * revert README
1 parent c2c2958 commit b11a110

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

noxfile.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -394,10 +394,11 @@ def compliance(session):
394394
f"--junitxml=compliance_{session.python}_sponge_log.xml",
395395
"--reruns=3",
396396
"--reruns-delay=60",
397-
"--only-rerun=403 Exceeded rate limits",
398-
"--only-rerun=409 Already Exists",
399-
"--only-rerun=404 Not found",
400-
"--only-rerun=400 Cannot execute DML over a non-existent table",
397+
"--only-rerun=Exceeded rate limits",
398+
"--only-rerun=Already Exists",
399+
"--only-rerun=Not found",
400+
"--only-rerun=Cannot execute DML over a non-existent table",
401+
"--only-rerun=Job exceeded rate limits",
401402
system_test_folder_path,
402403
*session.posargs,
403404
# To suppress the "Deprecated API features detected!" warning when

owlbot.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -188,10 +188,11 @@ def compliance(session):
188188
f"--junitxml=compliance_{session.python}_sponge_log.xml",
189189
"--reruns=3",
190190
"--reruns-delay=60",
191-
"--only-rerun=403 Exceeded rate limits",
192-
"--only-rerun=409 Already Exists",
193-
"--only-rerun=404 Not found",
194-
"--only-rerun=400 Cannot execute DML over a non-existent table",
191+
"--only-rerun=Exceeded rate limits",
192+
"--only-rerun=Already Exists",
193+
"--only-rerun=Not found",
194+
"--only-rerun=Cannot execute DML over a non-existent table",
195+
"--only-rerun=Job exceeded rate limits",
195196
system_test_folder_path,
196197
*session.posargs,
197198
# To suppress the "Deprecated API features detected!" warning when

0 commit comments

Comments
 (0)