Skip to content

Commit 1649490

Browse files
committed
Remove outdated tests
1 parent 40761fd commit 1649490

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

check_times.py

+2-4
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,7 @@ def calc_time(lines: list[str]) -> None:
6464
fmt_duration = format_seconds(duration)
6565
if lang_ver != f'{language}/{version}':
6666
reason = ''
67-
if True or language == "en":
68-
print(f"{start_timestamp: <20} | {version: <7} | {language: <8} | {fmt_duration :<14} | {reason}")
67+
print(f"{start_timestamp: <20} | {version: <7} | {language: <8} | {fmt_duration :<14} | {reason}")
6968
start = end = start_timestamp = None
7069

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

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

8078

8179
def format_seconds(seconds: float) -> str:

0 commit comments

Comments
 (0)