Skip to content

Commit

Permalink
do not require executorlib
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-janssen committed Sep 8, 2024
1 parent 1dcba6c commit 949ce11
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions tests/test_conda_function.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,12 @@
import sys
import unittest

from executorlib.shared.interface import SubprocessInterface
from executorlib.shared.executor import cloudpickle_register, get_command_path
from executorlib.shared.communication import SocketInterface
try:
from executorlib.shared.interface import SubprocessInterface
from executorlib.shared.executor import cloudpickle_register, get_command_path
from executorlib.shared.communication import SocketInterface
except ImportError:
pass

import conda_subprocess

Expand Down

0 comments on commit 949ce11

Please sign in to comment.