Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/scilus/scilpy into clarif…
Browse files Browse the repository at this point in the history
…y_b0_threshold
  • Loading branch information
EmmaRenauld committed Jan 24, 2024
2 parents 5521fa0 + 3deee5e commit cc84f04
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 2 deletions.
15 changes: 15 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ pipeline {
}

stage('Test') {
environment {
CODECOV_TOKEN = credentials('scilpy-codecov-token')
}
steps {
withPythonEnv('CPython-3.10') {
sh '''
Expand All @@ -47,6 +50,18 @@ pipeline {
sourceCodeRetention: 'MODIFIED',
tools: [[parser: 'COBERTURA',
pattern: '**/.test_reports/coverage.xml']])
sh '''
curl https://keybase.io/codecovsecurity/pgp_keys.asc | gpg --no-default-keyring --import # One-time step
curl -Os https://uploader.codecov.io/latest/linux/codecov
curl -Os https://uploader.codecov.io/latest/linux/codecov.SHA256SUM
curl -Os https://uploader.codecov.io/latest/linux/codecov.SHA256SUM.sig
gpg --verify codecov.SHA256SUM.sig codecov.SHA256SUM
shasum -a 256 -c codecov.SHA256SUM
chmod +x codecov
./codecov -t ${CODECOV_TOKEN} -f .test_reports/coverage.xml
'''
}
}

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Scilpy
[![GitHub release (latest by date)](https://img.shields.io/github/v/release/scilus/scilpy)](https://github.com/scilus/scilpy/releases)
[![Build Status](https://travis-ci.com/scilus/scilpy.svg?branch=master)](https://travis-ci.com/scilus/scilpy)
[![codecov](https://codecov.io/github/scilus/scilpy/graph/badge.svg?token=oXjDog4YZG)](https://codecov.io/github/scilus/scilpy)
[![Documentation Status](https://readthedocs.org/projects/scilpy/badge/?version=latest)](https://scilpy.readthedocs.io/en/latest/?badge=latest)

[![PyPI version badge](https://img.shields.io/pypi/v/scilpy?logo=pypi&logoColor=white)](https://pypi.org/project/scilpy)
Expand Down
2 changes: 1 addition & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ matplotlib==2.2.*
nibabel==3.0.*
nilearn==0.6.*
numpy==1.21.*
Pillow==10.0.1
Pillow==10.2.0
pybids==0.10.*
pyparsing==2.2.*
python-dateutil==2.7.*
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ nilearn==0.9.*
numpy==1.23.*
openpyxl==3.0.*
packaging == 23.2.*
Pillow==10.0.*
Pillow==10.2.*
pybids==0.16.*
pyparsing==3.0.*
PySocks==1.7.*
Expand Down

0 comments on commit cc84f04

Please sign in to comment.