From a5be0396af11982846613206fe7a8d109c7a19d1 Mon Sep 17 00:00:00 2001 From: Florent Pruvost Date: Thu, 26 Apr 2018 08:53:11 +0200 Subject: [PATCH] fix path for coverage --- .gitlab-ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c10185c..989dfca 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -33,8 +33,9 @@ test_pampa: script: - cd build - make test - - lcov --directory . --capture --output-file pampa.lcov - - lcov_cobertura.py pampa.lcov --output ../pampa-coverage.xml + - cd .. + - lcov --directory build --capture --output-file pampa.lcov + - lcov_cobertura.py pampa.lcov --output pampa-coverage.xml only: - branches - master@PaMPA/PaMPA-p -- GitLab