Skip to content

Commit

Permalink
skip zoneinfo tests on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
georgebv committed Mar 21, 2024
1 parent 853f409 commit 4393594
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,9 @@ class TestSoqlFormatting:
pytest.param(
datetime.datetime(
*(2024, 5, 6, 12, 0, 0, 123000),
tzinfo=zoneinfo.ZoneInfo("America/New_York"),
tzinfo=zoneinfo.ZoneInfo("America/New_York")
if sys.platform != "win32"
else None,
),
"2024-05-06T12:00:00.123-04:00",
marks=pytest.mark.skipif(
Expand Down

0 comments on commit 4393594

Please sign in to comment.