Skip to content

Commit

Permalink
ignore variants until 04b7b3a0ca8 will reach 11.3 server branch
Browse files Browse the repository at this point in the history
  • Loading branch information
vuvova committed Sep 29, 2023
1 parent 71141b9 commit 6c6f13f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common_factories.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def run(self):

if master_branch:
query = """
select concat(test_name,',',test_variant) from (select id, test_name,test_variant from test_failure,test_run where branch='%s' and test_run_id=id order by test_run_id desc limit %d) x group by test_name,test_variant order by max(id) desc limit %d
select test_name from (select id, test_name from test_failure,test_run where branch='%s' and test_run_id=id order by test_run_id desc limit %d) x group by test_name order by max(id) desc limit %d
"""
tests = yield self.runQueryWithRetry(query % (master_branch, overlimit, limit))
tests = list(t[0] for t in tests)
Expand Down

0 comments on commit 6c6f13f

Please sign in to comment.