We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8a59fb commit b3ab7efCopy full SHA for b3ab7ef
tests/test_output.py
@@ -117,7 +117,7 @@ def test_cli_3D_diam(data_dir, image_names_3d):
117
clear_output(data_dir, image_names_3d)
118
use_gpu = torch.cuda.is_available()
119
gpu_string = "--use_gpu" if use_gpu else ""
120
- cmd = f"python -m cellpose --image_path {str(data_dir / "3D" / image_names_3d[0])} --do_3D --diameter 25 --save_tif {gpu_string} --verbose"
+ cmd = f"python -m cellpose --image_path {str(data_dir / '3D' / image_names_3d[0])} --do_3D --diameter 25 --save_tif {gpu_string} --verbose"
121
try:
122
cmd_stdout = check_output(cmd, stderr=STDOUT, shell=True).decode()
123
print(cmd_stdout)
0 commit comments