Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions easybuild/easyblocks/s/scipy.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,10 @@ def build_step(self):

def test_step(self):
"""Run available scipy unit tests. Adapted from numpy easyblock"""
# Do not try to run tests if a user requested to not run them
if self.cfg['runtest'] is False:
self.log.info("Skipping tests due to runtest = False")
return ''

if self.use_meson:
# temporarily install scipy so we can run the test suite
Expand Down
Loading