We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56861b1 commit 093b399Copy full SHA for 093b399
1 file changed
tests/integration/test_pyiron_workflow.py
@@ -11,6 +11,7 @@
11
from time import sleep
12
from typing import Callable
13
import unittest
14
+import sys
15
16
from executorlib import SingleNodeExecutor
17
from executorlib.standalone.serialize import cloudpickle_register
@@ -55,6 +56,10 @@ def as_dynamic_foo(fnc: Callable):
55
56
return as_dynamic_foo
57
58
59
+@unittest.skipIf(
60
+ sys.version_info.minor >= 14 and sys.version_info.minor >= 3,
61
+ "Test environment has to be Python <3.14 for dynamic objects.",
62
+)
63
class TestDynamicallyDefinedObjects(unittest.TestCase):
64
def test_args(self):
65
"""
0 commit comments