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
9 changes: 4 additions & 5 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
steps:

# Install skada
- name: Checking Out Repository
- name: Checking Out Repository # yamllint disable-line rule:indentation
uses: actions/checkout@v4
# Cache 'skada' datasets
- name: Create/Restore Skada Data Cache
Expand All @@ -46,7 +46,6 @@ jobs:
pre-commit run --all-files



Test-minimal:
runs-on: ubuntu-latest
strategy:
Expand All @@ -57,7 +56,7 @@ jobs:
steps:

# Install skada
- name: Checking Out Repository
- name: Checking Out Repository # yamllint disable-line rule:indentation
uses: actions/checkout@v4
# Cache 'skada' datasets
- name: Create/Restore Skada Data Cache
Expand Down Expand Up @@ -98,7 +97,7 @@ jobs:
steps:

# Install skada
- name: Checking Out Repository
- name: Checking Out Repository # yamllint disable-line rule:indentation
uses: actions/checkout@v4
# Cache 'skada' datasets
- name: Create/Restore Skada Data Cache
Expand All @@ -125,4 +124,4 @@ jobs:
env:
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true
fail_ci_if_error: true
fail_ci_if_error: true
2 changes: 0 additions & 2 deletions .yamllint.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
extends: default

ignore: |
.github/workflows/testing.yml
.circleci/config.yml
codecov.yml

rules:
line-length: disable
Expand Down
26 changes: 13 additions & 13 deletions codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
codecov:
bot: "codecov-io"
strict_yaml_branch: "yaml-config"
require_ci_to_pass: yes
require_ci_to_pass: yes # yamllint disable-line rule:truthy
notify:
wait_for_ci: yes
wait_for_ci: yes # yamllint disable-line rule:truthy

coverage:
precision: 2
Expand All @@ -16,24 +16,24 @@ coverage:
status:
project:
default:
base: auto # target to compare against
target: auto # target "X%" coverage to hit on project
threshold: 0.5% # allow this much decrease from base
base: auto # target to compare against
target: auto # target "X%" coverage to hit on project
threshold: 0.5% # allow this much decrease from base
if_ci_failed: error
patch:
default:
base: auto # target to compare against
target: 50% # target "X%" coverage to hit on patch
# threshold: 50% # allow this much decrease on patch
base: auto # target to compare against
target: 50% # target "X%" coverage to hit on patch
# threshold: 50% # allow this much decrease on patch
changes: false

parsers:
gcov:
branch_detection:
conditional: yes
loop: yes
method: no
macro: no
conditional: yes # yamllint disable-line rule:truthy
loop: yes # yamllint disable-line rule:truthy
method: no # yamllint disable-line rule:truthy
macro: no # yamllint disable-line rule:truthy

# https://docs.codecov.io/docs/ignoring-paths
# ignore:
Expand All @@ -43,4 +43,4 @@ parsers:
comment:
layout: header, diff, sunburst, uncovered
behavior: default
require_changes: true # if true: only post the comment if coverage changes
require_changes: true # if true: only post the comment if coverage changes