File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed
Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -258,8 +258,6 @@ def __init__(self, ec):
258258 if group_name is not None :
259259 self .group = use_group (group_name )
260260
261- self .ignore_test_failure = build_option ('ignore_test_failure' )
262-
263261 # generate build/install directories
264262 self .gen_builddir ()
265263 self .gen_installdir ()
@@ -1831,7 +1829,7 @@ def report_test_failure(self, msg_or_error):
18311829
18321830 :param msg_or_error: failure description (string value or an EasyBuildError instance)
18331831 """
1834- if self . ignore_test_failure :
1832+ if build_option ( ' ignore_test_failure' ) :
18351833 print_warning ("Test failure ignored: " + str (msg_or_error ), log = self .log )
18361834 else :
18371835 exception = msg_or_error if isinstance (msg_or_error , EasyBuildError ) else EasyBuildError (msg_or_error )
You can’t perform that action at this time.
0 commit comments