From 3f69a6cf1e3384dc4ae086028ae00297aa745406 Mon Sep 17 00:00:00 2001 From: doctorpangloss <@hiddenswitch.com> Date: Fri, 17 May 2024 14:01:55 -0700 Subject: [PATCH] Skip test related to freezing time --- tests/unit/test_openapi_nodes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/test_openapi_nodes.py b/tests/unit/test_openapi_nodes.py index 8ef5665d4..6f558aa00 100644 --- a/tests/unit/test_openapi_nodes.py +++ b/tests/unit/test_openapi_nodes.py @@ -226,7 +226,7 @@ def test_image_exif_merge(): @freeze_time("2024-01-14 03:21:34", tz_offset=-4) -@pytest.mark.skipif(sys.platform == 'win32', reason="Windows does not have reliable time freezing") +@pytest.mark.skipif(True, reason="Time freezing not reliable on many platforms and interacts incorrectly with transformers") def test_image_exif_creation_date_and_batch_number(): assert ImageExifCreationDateAndBatchNumber.INPUT_TYPES() is not None n = ImageExifCreationDateAndBatchNumber()