Skip to content

Commit 093b399

Browse files
committed
exclude integration tests
1 parent 56861b1 commit 093b399

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

tests/integration/test_pyiron_workflow.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
from time import sleep
1212
from typing import Callable
1313
import unittest
14+
import sys
1415

1516
from executorlib import SingleNodeExecutor
1617
from executorlib.standalone.serialize import cloudpickle_register
@@ -55,6 +56,10 @@ def as_dynamic_foo(fnc: Callable):
5556
return as_dynamic_foo
5657

5758

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+
)
5863
class TestDynamicallyDefinedObjects(unittest.TestCase):
5964
def test_args(self):
6065
"""

0 commit comments

Comments
 (0)