diff options
author | Jürg Billeter <j@bitron.ch> | 2019-12-10 15:23:06 +0100 |
---|---|---|
committer | Jürg Billeter <j@bitron.ch> | 2019-12-10 15:31:37 +0100 |
commit | 73c3ab72042b032eebaa38b3df13c8ce87dd0875 (patch) | |
tree | f092afea64e77d83cb8b263b3999a6f81b562765 | |
parent | 7ca05baa9fecaf263458650019aa908a26235858 (diff) | |
download | buildstream-73c3ab72042b032eebaa38b3df13c8ce87dd0875.tar.gz |
tests/integration/interactive_build.py: Increase timeout
-rw-r--r-- | tests/integration/interactive_build.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/integration/interactive_build.py b/tests/integration/interactive_build.py index 84db69ad9..f4b974042 100644 --- a/tests/integration/interactive_build.py +++ b/tests/integration/interactive_build.py @@ -93,7 +93,7 @@ def test_failed_build_shell(element_name, build_session): # Quit the shell build_session.sendline("exit") # Quit the session - build_session.expect_exact("Choice: [continue]:") + build_session.expect_exact("Choice: [continue]:", timeout=PEXPECT_TIMEOUT_LONG) build_session.sendline("quit") build_session.expect_exact(pexpect.EOF) |