-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.badgery.yaml
More file actions
72 lines (62 loc) · 1.6 KB
/
.badgery.yaml
File metadata and controls
72 lines (62 loc) · 1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
default_branch: master
develop_branch: develop
cards:
- group: Tests
type: gh_action
title: Code/package tests (GitHub)
file: test.yml
enabled: true
- group: Tests
type: gh_action
title: Tutorial tests (GitHub)
file: tutorial-tests.yml
enabled: true
- group: Tests
type: gh_action
title: Package tests (PyPI)
file: pypi-test.yml
enabled: true
- group: Code Quality
type: codefactor
title: Code quality (CodeFactor)
enabled: true
- group: Code Quality
type: radon_mi
title: Maintainability index (radon)
report: reports/{branch}/maintainability-index.json
enabled: true
- group: Code Quality
type: radon_cc
title: Cyclomatic complexity (radon)
report: reports/{branch}/cyclomatic-complexity.json
enabled: true
- group: Size
type: radon_loc
title: Source/Logical lines of code (radon)
report: reports/{branch}/raw-metrics.json
enabled: true
- group: Size
type: radon_ff
title: Functions/Files count (radon)
report: reports/{branch}/cyclomatic-complexity.json
enabled: true
- group: Coverage
type: codecov
title: Unit test coverage (Codecov)
flag: unittests
enabled: true
- group: Coverage
type: interrogate
title: Docstring coverage (interrogate)
report: reports/{branch}/coverage-docstring.txt
enabled: true
- group: Build & Release
type: gh_action
title: Publishing (PyPI)
workflow: pypi-publish.yml
enabled: true
- group: Build & Release
type: gh_action
title: Docs build/deployment
workflow: docs.yml
enabled: true