mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-29 03:30:22 -07:00
Improve display of test timeout message.
This commit is contained in:
parent
2c59d88154
commit
6588df505c
1 changed files with 5 additions and 1 deletions
|
@ -174,7 +174,11 @@ class TestTimeout(TestResult):
|
||||||
:type args: TestConfig
|
:type args: TestConfig
|
||||||
"""
|
"""
|
||||||
message = 'Tests were aborted after exceeding the %d minute time limit.' % self.timeout_duration
|
message = 'Tests were aborted after exceeding the %d minute time limit.' % self.timeout_duration
|
||||||
output = '''One or more of the following situations may be responsible:
|
|
||||||
|
# Include a leading newline to improve readability on Shippable "Tests" tab.
|
||||||
|
# Without this, the first line becomes indented.
|
||||||
|
output = '''
|
||||||
|
One or more of the following situations may be responsible:
|
||||||
|
|
||||||
- Code changes have resulted in tests that hang or run for an excessive amount of time.
|
- Code changes have resulted in tests that hang or run for an excessive amount of time.
|
||||||
- Tests have been added which exceed the time limit when combined with existing tests.
|
- Tests have been added which exceed the time limit when combined with existing tests.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue