Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
pybinder_test
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
GitLab upgrade completed. Current version is 17.11.3.
Show more breadcrumbs
FARNUDI Ali
pybinder_test
Merge requests
!3
#7
add test and build CI
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
#7
add test and build CI
7-setup-ci
into
master
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
FARNUDI Ali
requested to merge
7-setup-ci
into
master
1 year ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
Closes
#7 (closed)
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
c51a5334
1 commit,
1 year ago
1 file
+
36
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
.gitlab-ci.yml
0 → 100644
+
36
−
0
Options
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
Loading