Skip to content
Merged
Changes from 1 commit
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
5 changes: 3 additions & 2 deletions easybuild/easyblocks/p/pybind11.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,9 @@ def configure_step(self):

def test_step(self):
"""Run pybind11 tests"""
# always run tests
self.cfg['runtest'] = 'check'
# always run tests unless explicitly disabled
if self.cfg['runtest'] is not False:
self.cfg['runtest'] = 'check'
super(EB_pybind11, self).test_step()

def install_step(self):
Expand Down