From c456d1007fddfe0d7812a97fb6f96c6a6632694e Mon Sep 17 00:00:00 2001 From: Samuel Moors Date: Mon, 11 Dec 2023 11:18:01 +0100 Subject: [PATCH] remove unused var --- easybuild/easyblocks/n/nwchem.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/easybuild/easyblocks/n/nwchem.py b/easybuild/easyblocks/n/nwchem.py index 6eac2b6e68..3c5bf1e539 100644 --- a/easybuild/easyblocks/n/nwchem.py +++ b/easybuild/easyblocks/n/nwchem.py @@ -471,10 +471,9 @@ def test_cases_step(self): self.log.debug("Copying %s to %s" % (test_file, tmpdir)) copy_file(test_file, tmpdir) - max_mpi_ranks = min(self.cfg['parallel'], 4) # run tests for testx in tests: - # some test cases hang with more than 1 rank on some architectures + # some test cases hang with more than 1 MPI rank on some architectures n_mpi_ranks = 1 cmd = '%s %s' % (self.toolchain.mpi_cmd_for('nwchem', n_mpi_ranks), testx) msg = "Running test '%s' (from %s) in %s..." % (cmd, testdir, tmpdir)