We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2c7557 commit bdf1e20Copy full SHA for bdf1e20
test/framework/run.py
@@ -609,7 +609,7 @@ def test_run_cmd_async(self):
609
self.assertEqual(res, {'done': True, 'exit_code': 0, 'output': 'sleeping...\ntest123\n'})
610
611
# check asynchronous running of failing command
612
- error_test_cmd = "sleep 2; echo 'FAIL!' >&2; exit 123"
+ error_test_cmd = "echo 'FAIL!' >&2; exit 123"
613
cmd_info = run_cmd(error_test_cmd, asynchronous=True)
614
error_pattern = 'cmd ".*" exited with exit code 123'
615
self.assertErrorRegex(EasyBuildError, error_pattern, check_async_cmd, *cmd_info)
0 commit comments