From f6e12b4798485be3a1bb240b4af44d57dd5c84b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20K=C3=B6ster?= Date: Mon, 29 Nov 2021 16:48:10 +0100 Subject: [PATCH] fix: set default number of nodes to 1 in test cases (#1288) --- tests/common.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/common.py b/tests/common.py index f1a179fcc..a6ca8b7e1 100644 --- a/tests/common.py +++ b/tests/common.py @@ -90,6 +90,7 @@ def run( check_md5=True, check_results=True, cores=3, + nodes=1, set_pythonpath=True, cleanup=True, conda_frontend="mamba", @@ -168,6 +169,7 @@ def run( success = snakemake( snakefile=original_snakefile if no_tmpdir else snakefile, cores=cores, + nodes=nodes, workdir=path if no_tmpdir else tmpdir, stats="stats.txt", config=config,