-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make the plan wait properly for interactive start (#1019)
moved the helper to a place from where it can be used in the executable as well as in the testcases. Co-authored-by: Krisztian Notaisz <[email protected]>
- Loading branch information
Showing
5 changed files
with
17 additions
and
15 deletions.
There are no files selected for viewing
13 changes: 0 additions & 13 deletions
13
tests/functional/testplan/runnable/interactive/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +0,0 @@ | ||
from testplan.common.utils.timing import wait | ||
|
||
|
||
def interactive_started(plan): | ||
return plan.interactive.http_handler_info[0] is not None | ||
|
||
|
||
def wait_for_interactive_start(plan): | ||
wait( | ||
lambda: interactive_started(plan), | ||
5, | ||
raise_on_timeout=True, | ||
) | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
tests/functional/testplan/runnable/interactive/interactive_helper.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
from testplan.common.utils.timing import wait | ||
|
||
|
||
def interactive_started(plan): | ||
return plan.interactive.http_handler_info[0] is not None | ||
|
||
|
||
def wait_for_interactive_start(plan): | ||
wait( | ||
lambda: interactive_started(plan), | ||
5, | ||
raise_on_timeout=True, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters