File tree 1 file changed +3
-0
lines changed
1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change
1
+ import os
1
2
import unittest
2
3
3
4
from octue .cloud .events .attributes import QuestionAttributes , ResponseAttributes
@@ -104,6 +105,7 @@ def test_to_serialised_attributes(self):
104
105
},
105
106
)
106
107
108
+ @unittest .skipIf (condition = os .name == "nt" , reason = "See issue https://github.com/octue/octue-sdk-python/issues/229" )
107
109
def test_reset_uuid_and_datetime (self ):
108
110
"""Test that the `reset_uuid_and_datetime` method changes the UUID and datetime."""
109
111
attributes = QuestionAttributes (sender = SENDER , recipient = RECIPIENT , question_uuid = QUESTION_UUID )
@@ -189,6 +191,7 @@ def test_to_serialised_attributes(self):
189
191
},
190
192
)
191
193
194
+ @unittest .skipIf (condition = os .name == "nt" , reason = "See issue https://github.com/octue/octue-sdk-python/issues/229" )
192
195
def test_reset_uuid_and_datetime (self ):
193
196
"""Test that the `reset_uuid_and_datetime` method changes the UUID and datetime."""
194
197
attributes = ResponseAttributes (sender = SENDER , recipient = RECIPIENT , question_uuid = QUESTION_UUID )
You can’t perform that action at this time.
0 commit comments