diff --git a/tests/wrapper_working.yml b/tests/wrapper_working.yml index c542b61..9b80263 100644 --- a/tests/wrapper_working.yml +++ b/tests/wrapper_working.yml @@ -14,14 +14,14 @@ block: - name: Execute the tests shell: | - /usr/local/bin/Squashfs-compression-test.sh &> /tmp/test.log; grep -iq failed /tmp/test.log && result=fail || result=pass + /usr/local/bin/Squashfs-compression-test.sh &> /tmp/working.log; grep -iq failed /tmp/working.log && result=fail || result=pass echo -e "results:\n- {result: $result, test: working}" > /tmp/results.yml always: - name: Pull out the logs fetch: - dest: "{{ artifacts }}/" + dest: "{{ artifacts }}" src: "{{ item }}" flat: yes with_items: - - /tmp/test.log + - /tmp/working.log - /tmp/results.yml