-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move pytest-cov and pylint configuration to setup.cfg (#47)
- Loading branch information
1 parent
5e5422e
commit ac8c8b3
Showing
3 changed files
with
13 additions
and
11 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,15 @@ | ||
[isort] | ||
known_first_party=deidentify | ||
|
||
[pylint.TYPECHECK] | ||
ignored-modules=spacy.symbols, spacy.gold, spacy.matcher, spacy.tokens.doc | ||
|
||
[coverage:report] | ||
exclude_lines = | ||
def arg_parser | ||
raise AssertionError | ||
raise NotImplementedError | ||
if __name__ == .__main__.: | ||
def __repr__ | ||
def __str__ | ||
def __unicode__ |