remove skip for timezone tests

This commit is contained in:
Gareth J. Greenaway 2023-11-22 14:00:51 -08:00 committed by Daniel Wozniak
parent cf72e134cf
commit 9e2df85ff7

View file

@ -49,9 +49,6 @@ def _setup_teardown_vars(timezone):
timezone.set_time(CURRENT_TIME)
@pytest.mark.skip(
reason="Skip until we can figure out why modifying the system clock causes ZMQ errors",
)
@pytest.mark.destructive_test
def test_get_set_date(timezone):
"""
@ -100,9 +97,6 @@ def test_set_time(timezone):
assert ret == "ERROR executing 'timezone.set_time': Invalid Date/Time Format: 3:71"
@pytest.mark.skip(
reason="Skip until we can figure out why modifying the system clock causes ZMQ errors",
)
@pytest.mark.destructive_test
def test_get_set_zone(timezone):
"""
@ -119,9 +113,6 @@ def test_get_set_zone(timezone):
assert ret == "ERROR executing 'timezone.set_zone': Invalid Timezone: spongebob"
@pytest.mark.skip(
reason="Skip until we can figure out why modifying the system clock causes ZMQ errors",
)
@pytest.mark.destructive_test
def test_get_offset(timezone):
"""
@ -139,9 +130,6 @@ def test_get_offset(timezone):
assert ret == "-0700"
@pytest.mark.skip(
reason="Skip until we can figure out why modifying the system clock causes ZMQ errors",
)
@pytest.mark.destructive_test
def test_get_set_zonecode(timezone):
"""
@ -170,9 +158,6 @@ def test_list_zones(timezone):
assert "America/Los_Angeles" in zones
@pytest.mark.skip(
reason="Skip until we can figure out why modifying the system clock causes ZMQ errors",
)
@pytest.mark.destructive_test
def test_zone_compare(timezone):
"""
@ -186,9 +171,6 @@ def test_zone_compare(timezone):
assert not ret
@pytest.mark.skip(
reason="Skip until we can figure out why modifying the system clock causes ZMQ errors",
)
@pytest.mark.destructive_test
def test_get_set_using_network_time(timezone):
"""
@ -208,9 +190,6 @@ def test_get_set_using_network_time(timezone):
assert not ret
@pytest.mark.skip(
reason="Skip until we can figure out why modifying the system clock causes ZMQ errors",
)
@pytest.mark.destructive_test
def test_get_set_time_server(timezone):
"""