Skip to content

Commit

Permalink
Disable test case for three-digit years as root cause is upstream.
Browse files Browse the repository at this point in the history
  • Loading branch information
kurtraschke committed Nov 3, 2024
1 parent 0acc97b commit 71011fa
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pyrfc3339/tests/test_all.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ def test_generate_local_parse_utc(self):
dt2 = parse(generate(dt1, utc=False, microseconds=True))
self.assertEqual(dt1, dt2)

@unittest.skip("fails due to python/cpython#120713")
def test_three_digit_year(self):
dt = datetime(999,1,1,0,0,0, tzinfo=timezone.utc)
self.assertEqual(generate(dt), "0999-01-01T00:00:00Z")
Expand Down

0 comments on commit 71011fa

Please sign in to comment.