Mentions légales du service

Skip to content
Snippets Groups Projects
Commit c51a5334 authored by ali's avatar ali
Browse files

#7 add test and build CI

parent a6886d24
No related branches found
No related tags found
1 merge request!3#7 add test and build CI
image: continuumio/miniconda3
before_script:
- conda env create -n pybinder -f environment.yml
- conda activate pybinder
tests:
stage: test
tags:
- ci.inria.fr
- small
script:
- pip install pytest coverage
- coverage run -m pytest -rsv --junit-xml=report.xml # Generate test report in junit format
- coverage report # for displaying coverage in job logs
- coverage xml # for generating coverage.xml report
coverage: '/^TOTAL.+?(\d+\%)$/'
artifacts:
when: always
reports:
coverage_report:
coverage_format: cobertura
path: coverage.xml
junit: report.xml
interruptible: true
build:
stage: test
tags:
- ci.inria.fr
- small
script:
- pip install --upgrade build
- python -m build
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment