From 1c63f210e5a7f87596789815a2a96f4ea5b37a9f Mon Sep 17 00:00:00 2001 From: Scott Volk Date: Mon, 23 Sep 2019 06:06:21 -0700 Subject: [PATCH] Adding some notes to race-condition tests. --- test/thread_safe_attributes_test.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/thread_safe_attributes_test.py b/test/thread_safe_attributes_test.py index 4f3d8fd..d15d856 100644 --- a/test/thread_safe_attributes_test.py +++ b/test/thread_safe_attributes_test.py @@ -582,6 +582,7 @@ def test_thread_safe_in_factory(): #@pytest.mark.isolated @pytest.mark.thread_safe_attributes def test_no_lock_access(): + '''requires visual inspection''' class GetLock1(ThreadSafeAttributes): _attributes = ['thread_safe_attr_1'] @@ -643,6 +644,7 @@ def thread_method_4(self): @pytest.mark.isolated @pytest.mark.thread_safe_attributes def test_lock_access(): + '''requires visual inspection''' class GetLock1(ThreadSafeAttributes): _attributes = ['thread_safe_attr_1']