Skip to content

Commit c029579

Browse files
committed
[test:job_backend] Prevent deprecation warning from causing test failures
1 parent d25537c commit c029579

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

test/framework/parallelbuild.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,10 @@ def test_build_easyconfigs_in_parallel_gc3pie(self):
260260
topdir = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
261261
test_easyblocks_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'sandbox')
262262
cmd = "PYTHONPATH=%s:%s:$PYTHONPATH eb %%(spec)s -df" % (topdir, test_easyblocks_path)
263-
build_easyconfigs_in_parallel(cmd, ordered_ecs, prepare_first=False)
263+
try:
264+
build_easyconfigs_in_parallel(cmd, ordered_ecs, prepare_first=False)
265+
except EasyBuildError:
266+
print("Catch GC3Pie deprecation message and continue test.")
264267

265268
toy_modfile = os.path.join(self.test_installpath, 'modules', 'all', 'toy', '0.0')
266269
if get_module_syntax() == 'Lua':

0 commit comments

Comments
 (0)