We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70b92fe commit c0596eaCopy full SHA for c0596ea
src/toil/test/__init__.py
@@ -589,7 +589,11 @@ def _mesos_avail() -> bool:
589
if not (which("mesos-master") or which("mesos-agent")):
590
return False
591
try:
592
- pass
+ import psutil
593
+ import pymesos
594
+
595
+ str(psutil) # to prevent removal of this import
596
+ str(pymesos) # to prevent removal of this import
597
except ImportError:
598
599
return True
@@ -790,7 +794,9 @@ def needs_cwl(test_item: MT) -> MT:
790
794
791
795
def _cwl_available() -> bool:
792
796
793
797
+ import cwltool
798
799
+ str(cwltool) # to prevent removal of this import
800
801
802
0 commit comments