diff options
author | Cleber Rosa <crosa@redhat.com> | 2020-10-09 16:55:13 -0400 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2020-10-13 08:08:55 +0200 |
commit | ec4d2feb27c5e46a69e2c2d588e982c9327e325e (patch) | |
tree | d034126d6046cf18d35e83de4dc596e16c3a8880 /.gitlab-ci.yml | |
parent | 52dff285698a3c9c7d97d8a790439a16f5fdb038 (diff) |
Acceptance tests: show test report on GitLab CI
Avocado will, by default, produce JUnit files. Let's ask GitLab
to present those in the web UI.
Signed-off-by: Cleber Rosa <crosa@redhat.com>
Message-Id: <20201009205513.751968-4-crosa@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 14be45bbfe..29e934fd53 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -53,6 +53,11 @@ include: paths: - ${CI_PROJECT_DIR}/avocado-cache policy: pull-push + artifacts: + paths: + - build/tests/results/latest/results.xml + reports: + junit: build/tests/results/latest/results.xml before_script: - mkdir -p ~/.config/avocado - echo "[datadir.paths]" > ~/.config/avocado/avocado.conf |