forked from coala/community
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.nocover.yaml
36 lines (33 loc) · 827 Bytes
/
.nocover.yaml
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
overrides: coala.yaml
allow_generic_no_cover: true
nocover_file_globs:
# These all need to be covered by tests
- activity/*.py
- community/git.py
- gci/*.py
- gsoc/*.py
- log/*.py
- meta_review/handler.py
- model/*.py
- openhub/*.py
# Optional coverage. Once off scripts.
- inactive_issues/inactive_issues_scraper.py
- unassigned_issues/unassigned_issues_scraper.py
# The following rules can remain here
# django db
- '*/migrations/*.py'
# django commands and related modules
- '*/management/commands/*.py'
- meta_review/load_from_db.py
- meta_review/dump_to_db.py
# django-distill runs these
- community/urls.py
- '*/views.py'
# tests
- '*/tests/*.py'
nocover_regexes:
# community/config.py
- def get_api_key
# meta_review/models.py
- def clear_score
- def __str__