Skip to content

Commit

Permalink
Remove outdated tests
Browse files Browse the repository at this point in the history
  • Loading branch information
AA-Turner committed Sep 23, 2024
1 parent 40761fd commit 1649490
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions check_times.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,7 @@ def calc_time(lines: list[str]) -> None:
fmt_duration = format_seconds(duration)
if lang_ver != f'{language}/{version}':
reason = ''
if True or language == "en":
print(f"{start_timestamp: <20} | {version: <7} | {language: <8} | {fmt_duration :<14} | {reason}")
print(f"{start_timestamp: <20} | {version: <7} | {language: <8} | {fmt_duration :<14} | {reason}")
start = end = start_timestamp = None

if ': Full build done' in line:
Expand All @@ -74,8 +73,7 @@ def calc_time(lines: list[str]) -> None:
print(f"{timestamp: <20} | --FULL- | -BUILD-- | {fmt_duration :<14} | -----------")

if start and end is None:
if True or language == "en":
print(f"{start_timestamp: <20} | {version: <7} | {language: <8} | In progress... | {reason}")
print(f"{start_timestamp: <20} | {version: <7} | {language: <8} | In progress... | {reason}")


def format_seconds(seconds: float) -> str:
Expand Down

0 comments on commit 1649490

Please sign in to comment.