Skip to content

Commit fed2bd5

Browse files
authored
Merge pull request #138 from TotallyNotRobots/gonzobot+fix-codecov
Fix codecov.yml
2 parents 7c8394b + 6be301d commit fed2bd5

File tree

2 files changed

+14
-8
lines changed

2 files changed

+14
-8
lines changed

.github/workflows/pythonapp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
restore-keys: |
3737
${{ runner.os }}-pip-
3838
- name: Install apt deps
39-
run: sudo apt-get install -qq -y libenchant-dev libxml2-dev libxslt1-dev
39+
run: sudo apt-get update && sudo apt-get install -qq -y libenchant-dev libxml2-dev libxslt1-dev
4040
- name: Install dependencies
4141
run: |
4242
pip install -U pip setuptools cython

codecov.yml

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,28 @@
11
comment:
2-
require_changes: yes
2+
require_changes: true
33
coverage:
44
status:
55
patch:
66
default: false
77
tests:
88
target: 100%
9-
paths: "tests/"
9+
paths:
10+
- "tests/"
1011
core:
11-
paths: "cloudbot/"
12+
paths:
13+
- "cloudbot/"
1214
target: 100%
1315
plugins:
14-
paths: "plugins/"
16+
paths:
17+
- "plugins/"
1518
project:
1619
tests:
1720
target: 100%
18-
paths: "tests/"
21+
paths:
22+
- "tests/"
1923
core:
20-
paths: "cloudbot/"
24+
paths:
25+
- "cloudbot/"
2126
plugins:
22-
paths: "plugins/"
27+
paths:
28+
- "plugins/"

0 commit comments

Comments
 (0)