Blob Blame History Raw
# These tasks should run after as test that fails
- name: "Check if {{artifacts}} was created properly on test runner"
  shell: "ls {{artifacts}}/test.log"
  delegate_to: localhost

- name: "Clean up {{artifacts}} to not affect other tests on test runner"
  file:
    state: absent
    path: "{{artifacts}}/"
  delegate_to: localhost