Skip to content
Snippets Groups Projects
Commit c3166ff5 authored by Jithu Murugan's avatar Jithu Murugan
Browse files

- coverage combine cannot process Cobertura files. Therefore, merge the...

- coverage combine cannot process Cobertura files. Therefore, merge the .coverage folder individually to prevent failures when combining the coverage results.
parent 15362bd9
No related branches found
No related tags found
2 merge requests!6ci(dedal): implement coverage calculation for the library,!4feat(spack_operation): implement setup_spack_env functionality
Pipeline #59676 canceled with stages
in 54 minutes and 54 seconds
......@@ -34,14 +34,14 @@ unit_tests:
image: ubuntu:22.04
script:
- coverage run -m pytest -s --tb=short --junitxml=test-results.xml ./dedal/tests/unit_tests
- coverage xml -o coverage_unit.xml
- mv .coverage .coverage.unit # Rename to avoid overwriting
artifacts:
when: always
reports:
junit: test-results.xml
paths:
- test-results.xml
- coverage_unit.xml
- .coverage.unit
expire_in: 1 week
integration_tests:
......@@ -51,7 +51,7 @@ integration_tests:
image: ubuntu:22.04
script:
- coverage run -m pytest -s --tb=short --junitxml=test-results.xml ./dedal/tests/integration_tests
- coverage xml -o coverage_integration.xml
- mv .coverage .coverage.integration # Rename to avoid overwriting
needs: ["unit_tests"]
artifacts:
when: always
......@@ -59,7 +59,7 @@ integration_tests:
junit: test-results.xml
paths:
- test-results.xml
- coverage_integration.xml
- .coverage.integration
expire_in: 1 week
merge_coverage:
......@@ -68,7 +68,7 @@ merge_coverage:
- docker-runner
image: ubuntu:22.04
script:
- coverage combine coverage_unit.xml coverage_integration.xml
- coverage combine .coverage.unit .coverage.integration
- coverage report
- coverage xml -o coverage.xml
- coverage html -d coverage_html
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment