| 8 Jan 2026 |
Sandro | Is anyone using bzr? We could probably turn that off per default | 21:17:53 |
hexa | bzr is far from the only consumer, so that is not a solution | 21:18:30 |
hexa | I repeat: it is the default django on 25.11 | 21:19:01 |
hexa | so the disable was fine for unstable, it is not for 25.11 | 21:19:11 |
Vladimír Čunát | I can un-disable, but that django version still won't build. | 21:32:21 |
Vladimír Čunát | (that's why I looked for what happened to that version on unstable and backported the disablement blindly) | 21:32:53 |
hexa | I know | 21:33:08 |
hexa | disable the one failing test | 21:45:43 |
hexa | and fixed the formatting on awscli2 | 21:45:49 |
hexa | might warrant a new eval | 21:45:59 |
Vladimír Čunát | Done. Still a few different darwin blockers, sigh.
https://hydra.nixos.org/build/318586458 | 22:59:02 |
hexa |  Download Screenshot_20260109-001830.png | 23:18:38 |
hexa | All macs are on Tahoe (26) 🤷 | 23:19:05 |
Sergei Zimmerman (xokdvium) | Thanks apple | 23:42:43 |
hexa | ___________ TestTranslateSearch.test_search_dates_with_prepositions ____________
self = <tests.test_search.TestTranslateSearch testMethod=test_search_dates_with_prepositions>
def test_search_dates_with_prepositions(self):
"""Test `search_dates` for parsing Russian date ranges with prepositions and language detection."""
result = search_dates(
"Сервис будет недоступен с 12 января по 30 апреля.",
add_detected_language=True,
languages=["ru"],
)
expected = [
("12 января", datetime.datetime(2025, 1, 12, 0, 0), "ru"),
("30 апреля", datetime.datetime(2025, 4, 30, 0, 0), "ru"),
]
> assert result == expected
^^^^^^^^^^^^^^^^^^
E AssertionError
/build/source/tests/test_search.py:1105: AssertionError
| 23:53:14 |
hexa | thanks dateparser | 23:53:17 |
hexa | * ___________ TestTranslateSearch.test_search_dates_with_prepositions ____________
self = <tests.test_search.TestTranslateSearch testMethod=test_search_dates_with_prepositions>
def test_search_dates_with_prepositions(self):
"""Test `search_dates` for parsing Russian date ranges with prepositions and language detection."""
result = search_dates(
"Сервис будет недоступен с 12 января по 30 апреля.",
add_detected_language=True,
languages=["ru"],
)
expected = [
("12 января", datetime.datetime(2025, 1, 12, 0, 0), "ru"),
("30 апреля", datetime.datetime(2025, 4, 30, 0, 0), "ru"),
]
> assert result == expected
^^^^^^^^^^^^^^^^^^
E AssertionError
/build/source/tests/test_search.py:1105: AssertionError
| 23:53:46 |