diff options
| author | Luke Meyer <lmeyer@redhat.com> | 2017-05-22 15:26:16 -0400 |
|---|---|---|
| committer | Luke Meyer <lmeyer@redhat.com> | 2017-05-22 15:26:16 -0400 |
| commit | 9184bf47523b2cfe45a6d41140fc2d5dd17a9cd9 (patch) | |
| tree | 647b4c6dbfc861f9691fb7c317fc3a174d2226cb | |
| parent | 3b8eb395b3e8c11679d86a0b712054fefad88914 (diff) | |
preflight int tests: fix test flake
Those tests spin up docker images and remove them at the end.
The removal seems to fail randomly on test systems.
Changed the removal task to ignore errors.
| -rw-r--r-- | test/integration/openshift_health_checker/teardown_container.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/integration/openshift_health_checker/teardown_container.yml b/test/integration/openshift_health_checker/teardown_container.yml index fe11e2617..e84fee1f5 100644 --- a/test/integration/openshift_health_checker/teardown_container.yml +++ b/test/integration/openshift_health_checker/teardown_container.yml @@ -21,3 +21,4 @@ docker_container: name: "{{ inventory_hostname }}" state: absent + failed_when: False |
