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
15 changes: 14 additions & 1 deletion .codecov.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,27 @@
codecov:
branch: master
notify:
after_n_builds: 13
manual_trigger: true

comment:
require_head: false
require_base: false

coverage:
range: "95..100"

status:
project: no

component_management:
individual_components:
- component_id: project
paths:
- aiohttp/**
- component_id: tests
paths:
- tests/**

flags:
library:
paths:
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ jobs:
- name: Upload coverage
uses: codecov/codecov-action@v5
with:
file: ./coverage.xml
files: ./coverage.xml
flags: >-
CI-GHA,OS-${{
runner.os
Expand Down Expand Up @@ -334,6 +334,12 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Trigger codecov notification
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
run_command: send-notifications
- name: Decide whether the needed jobs succeeded or failed
uses: re-actors/alls-green@release/v1
with:
Expand Down
Loading