The jammy upload is also adding the new DEP8 test, but disabled: --- a/debian/tests/python +++ b/debian/tests/python @@ -217,6 +217,13 @@ class TestZoneinfo(unittest.TestCase): date = timezone.localize(datetime.datetime(2025, 3, 23)) self.assertEqual(self._hours(date.utcoffset()), -3) + @unittest.skip("Needs https://launchpad.net/bugs/207604") + def test_2025b(self) -> None: + """Test 2025b release: Coyhaique stopped using DST from 2025-03-20 on.""" + timezone = pytz.timezone("America/Coyhaique") + date = timezone.localize(datetime.datetime(2025, 3, 21)) + self.assertEqual(self._hours(date.utcoffset()), 0) + def main() -> None: """Run unit tests in verbose mode.""" argv = sys.argv.copy()
Looking at the mentioned bug, it's "fix released" for jammy. Is this disabling still necessary? If yes, it doesn't qualify for a test plan for jammy. ** Changed in: tzdata (Ubuntu Jammy) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to tzdata in Ubuntu. https://bugs.launchpad.net/bugs/2104284 Title: tzdata 2025b release Status in tzdata package in Ubuntu: New Status in tzdata source package in Focal: New Status in tzdata source package in Jammy: New Status in tzdata source package in Noble: New Status in tzdata source package in Oracular: New Bug description: [ Impact ] The 2025b release contains the following changes: * New America/Coyhaique zone for Aysén Region in Chile, which moves from -04/-03 to -03. It will not change its clocks on 2025-04-05. * Improve historical data for Iran [ Test Plan ] Test cases were added to the autopkgtest to cover the testing: * python: test_2025b So the test plan is to check that the autopkgtest succeeds. Since https://launchpad.net/bugs/207604 hasn't been backported to focal, we need to test focal manually: * dpkg-reconfigure tzdata * Select America/Coyhaique * This zone should be available [ Other Info ] * The autopkgtest for chrony is flaky on jammy and newer (see bug #2002910). * The oracular autopkgtest for exchange-calendars needs to use 4.5.5-2ubuntu0.1 * The focal autopkgtest for postgresql-12 needs to use 12.22-0ubuntu0.20.04.3 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/tzdata/+bug/2104284/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp