Skip to content
Snippets Groups Projects

Expose test artifacts to the Gitlab CI interface

Merged ale requested to merge test-artifacts into master
+ 2
2
@@ -30,14 +30,14 @@
slurp:
src: "/artifacts/pytest.xml"
register: pytest_xml
when: "pytest_xml_stat and pytest_xml_stat.exists"
when: "pytest_xml_stat.exists | default(False)"
- name: Store test results locally
local_action:
module: copy
dest: "pytest.xml"
content: "{{ pytest_xml['content'] | b64decode }}"
when: "pytest_xml_stat and pytest_xml_stat.exists"
when: "pytest_xml_stat.exists | default(False)"
vars:
test_image: "registry.git.autistici.org/ai3/float:integration-test"
Loading