Skip to content

Commit

Permalink
Do not test exec_async_servers on mac
Browse files Browse the repository at this point in the history
  • Loading branch information
paugier committed May 24, 2024
1 parent 538844e commit a54c0d2
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/fluidimage/topologies/test_example.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import sys
import pytest

from fluidimage.executors import supported_multi_executors
Expand All @@ -8,10 +9,17 @@
"exec_async_sequential",
"exec_async",
"exec_async_multi",
"exec_async_servers",
"exec_async_servers_threading",
]

if sys.platform != "darwin":
# too much ConnectionRefusedError on Github Actions
executors.extend(
[
"exec_async_servers",
]
)

executors.extend(supported_multi_executors)

# tmp: TopologyExample doesn't have a Splitter
Expand Down

0 comments on commit a54c0d2

Please sign in to comment.