From 1757b6e33808d86068dc4609dc84ce03c22dfbad Mon Sep 17 00:00:00 2001 From: freol35241 Date: Thu, 14 Dec 2023 16:08:43 +0100 Subject: [PATCH] Re-enabling tests for windows and macos --- tests/test_libcluon_wrappers.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/tests/test_libcluon_wrappers.py b/tests/test_libcluon_wrappers.py index 2a71554..0b83e09 100644 --- a/tests/test_libcluon_wrappers.py +++ b/tests/test_libcluon_wrappers.py @@ -151,10 +151,6 @@ def on_message(data, timestamp): assert CALLED_ON_CONNECTION_LOST -@pytest.mark.skipif( - sys.platform == "win32" or sys.platform == "darwin", - reason="See issue https://github.com/MO-RISE/pycluon/issues/11", -) def test_shared_memory(): sm = SharedMemory("trial.data", 10) sm2 = SharedMemory("trial.data") @@ -212,10 +208,6 @@ def test_shared_memory(): assert not t.is_alive() -@pytest.mark.skipif( - sys.platform == "win32" or sys.platform == "darwin", - reason="See issue https://github.com/MO-RISE/pycluon/issues/11", -) def test_for_issue_17(): # Create image with one element equal to 0 img = np.ones((480, 640, 3), dtype=np.uint8)