Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ on:

jobs:
call-test-workflow:
permissions:
contents: read
id-token: write
uses: openbraininstitute/BluePyOpt/.github/workflows/test.yml@master

build-tag-n-publish:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/keep-alive.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ on:

jobs:
call-test-workflow:
permissions:
contents: read
id-token: write
uses: openbraininstitute/BluePyOpt/.github/workflows/test.yml@master

keep-workflow-alive:
Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ on:
# allows this workflow to be reusable (e.g. by the build workflow)
workflow_call:

permissions:
contents: read
id-token: write

jobs:
test:
name: Test for python ${{ matrix.python-version }} on ${{ matrix.os }}
Expand Down Expand Up @@ -36,7 +40,8 @@ jobs:
run: tox

- name: "Upload coverage to Codecov"
if: matrix.python-version != '3.14'
uses: codecov/codecov-action@v6
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: false
use_oidc: true
fail_ci_if_error: true
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -206,11 +206,11 @@ Copyright (c) 2025 Open Brain Institute
:target: https://github.com/openbraininstitute/bluepyopt/blob/master/LICENSE.txt
:alt: license

.. |build| image:: https://github.com/openbraininstitute/BluePyOpt/workflows/Build/badge.svg?branch=master
.. |build| image:: https://github.com/openbraininstitute/BluePyOpt/actions/workflows/build.yml/badge.svg?branch=master
:target: https://github.com/openbraininstitute/BluePyOpt/actions
:alt: actions build status

.. |coverage| image:: https://codecov.io/github/openbraininstitute/BluePyOpt/coverage.svg?branch=master
.. |coverage| image:: https://codecov.io/gh/openbraininstitute/bluepyopt/branch/master/graph/badge.svg
:target: https://codecov.io/gh/openbraininstitute/bluepyopt
:alt: coverage

Expand Down
Binary file removed docs/source/_static/bbp.jpg
Binary file not shown.
4 changes: 0 additions & 4 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,10 +124,6 @@
# A shorter title for the navigation bar. Default is the same as html_title.
#html_short_title = None

# The name of an image file (relative to this directory) to place at the top
# of the sidebar.
html_logo = "_static/bbp.jpg"

# The name of an image file (within the static path) to use as favicon of the
# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
# pixels large.
Expand Down