Force failure when test execution times out

Change-Id: Ie585f6de6c760f02a8b2cf169a0f4a768f52db95
This commit is contained in:
Eduardo Olivares 2021-03-12 09:19:43 +01:00
parent 3f98bc12fd
commit 84d8592c82
1 changed files with 9 additions and 0 deletions

View File

@ -54,3 +54,12 @@
failed_when: failed_when:
- not (ignore_test_failures | bool) - not (ignore_test_failures | bool)
- run_tox.rc not in tox_expected_rcs - run_tox.rc not in tox_expected_rcs
- name: 'raise error in case of timeout'
debug:
msg: 'timeout during the execution of the tests'
when: run_tox is failed
failed_when:
- (run_tox.stdout_lines | length) > 0
- run_tox.stdout_lines | regex_search('run_tests: ERROR.*run_tests.py timeout out after')