Skip to content

Commit 5877469

Browse files
committed
tests: check more timezones
1 parent 4cca280 commit 5877469

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

tests/test_chrono.py

+8-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,14 @@ def test_chrono_system_clock_roundtrip_date():
8181
datetime.time(5, 59, 59, 0),
8282
datetime.time(5, 59, 59, 1),
8383
])
84-
def test_chrono_system_clock_roundtrip_time(time1):
84+
@pytest.mark.parametrize("tz", [
85+
"/usr/share/zoneinfo/Europe/Brussels",
86+
"/usr/share/zoneinfo/Asia/Pyongyang",
87+
"/usr/share/zoneinfo/America/New_York",
88+
])
89+
def test_chrono_system_clock_roundtrip_time(time1, tz, monkeypatch):
90+
monkeypatch.setenv("TZ", tz)
91+
8592
# Roundtrip the time
8693
datetime2 = m.test_chrono2(time1)
8794
date2 = datetime2.date()

0 commit comments

Comments
 (0)