Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions tools/torchci/td/historical_class_failure_correlation.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
where
t.file is not null
and t.time_inserted > CURRENT_TIMESTAMP() - interval 90 day
# Slightly more relaxed time window just in case
and j.started_at > now() - interval 100 day
"""


Expand Down
2 changes: 2 additions & 0 deletions tools/torchci/td/historical_file_failure_correlation.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
where
t.metric_name = 'td_test_failure_stats_v2'
and t.timestamp > CURRENT_TIMESTAMP() - interval 90 day
# Slightly more relaxed time window just in case
and w.created_at > now() - interval 100 day
"""


Expand Down