Skip to content

Commit a2d6ace

Browse files
pruthvistonydnikolaev-amd
authored andcommitted
Increase lifespan of test-times files
- build_environment is hard coded to value from upstream when branch for created, since the dev/QA ENV build_environment value can be varing
1 parent 7f3172f commit a2d6ace

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

test/run_test.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1428,7 +1428,8 @@ def load_test_times_from_file(
14281428

14291429
with open(path) as f:
14301430
test_times_file = cast(Dict[str, Any], json.load(f))
1431-
build_environment = os.environ.get("BUILD_ENVIRONMENT")
1431+
# build_environment hard coded to value from upstream when branch is created
1432+
build_environment = "linux-focal-rocm6.0-py3.8"
14321433
test_config = os.environ.get("TEST_CONFIG")
14331434
if test_config in test_times_file.get(build_environment, {}):
14341435
print_to_stderr("Found test times from artifacts")

tools/stats/import_test_stats.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ def get_disabled_issues() -> List[str]:
3030
TD_HEURISTIC_PREVIOUSLY_FAILED = "previous_failures.json"
3131
TD_HEURISTIC_PREVIOUSLY_FAILED_ADDITIONAL = "previous_failures_additional.json"
3232

33-
FILE_CACHE_LIFESPAN_SECONDS = datetime.timedelta(hours=3).seconds
33+
#increse the cache time to 6 months
34+
FILE_CACHE_LIFESPAN_SECONDS = 6 * 30 * 24 * 3600
3435

3536

3637
def fetch_and_cache(

0 commit comments

Comments
 (0)