Skip to content

Commit bf2fa39

Browse files
committed
Merge branch 'terminate_function' of github.com:pyiron/executorlib into terminate_function
2 parents 5991b5f + 4a0d732 commit bf2fa39

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

tests/test_singlenodeexecutor_resize.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import unittest
2+
from sys import platform
23
from executorlib import SingleNodeExecutor
34
from executorlib.standalone.serialize import cloudpickle_register
45

@@ -52,6 +53,7 @@ def test_with_dependencies_decrease(self):
5253
self.assertEqual([f.result() for f in future_lst], [1, 1, 1, 1])
5354
self.assertEqual([f.done() for f in future_lst], [True, True, True, True])
5455

56+
@unittest.skipIf(platform == "darwin", "Skipping test on macOS due to known issues")
5557
def test_with_dependencies_increase(self):
5658
cloudpickle_register(ind=1)
5759
with SingleNodeExecutor(max_workers=1, block_allocation=True, disable_dependencies=False) as exe:

0 commit comments

Comments
 (0)