Skip to content

Commit 73a81d6

Browse files
committedMar 19, 2020
[ADD] added coveragerc and codeclimate
1 parent f524d41 commit 73a81d6

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed
 

‎.codeclimate.yml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
languages:
2+
JavaScript: true
3+
Python: true
4+
exclude_paths:
5+
- "__unported__/*"

‎.coveragerc

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Config file .coveragerc
2+
3+
[report]
4+
include =
5+
*/l10n-brazil/*
6+
7+
omit =
8+
*/tests/*
9+
*__init__.py
10+
11+
# Regexes for lines to exclude from consideration
12+
exclude_lines =
13+
# Have to re-enable the standard pragma
14+
pragma: no cover
15+
16+
# Don't complain about null context checking
17+
if context is None:

0 commit comments

Comments
 (0)
Please sign in to comment.