-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from abhishek-ram/check-line-endings
Check line endings
- Loading branch information
Showing
46 changed files
with
725 additions
and
523 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
[run] | ||
branch = True | ||
omit = | ||
*/site-packages/* | ||
*/tests/* | ||
|
||
[report] | ||
exclude_lines = | ||
|
||
# Don't complain about missing debug-only code: | ||
def __repr__ | ||
def __str__ | ||
|
||
# Don't complain if tests don't hit defensive assertion code: | ||
raise AssertionError | ||
raise NotImplementedError | ||
assert | ||
|
||
# Don't complain if non-runnable code isn't run: | ||
if 0: | ||
pass | ||
if __name__ == .__main__.: |
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 |
---|---|---|
|
@@ -91,5 +91,4 @@ ENV/ | |
# IDEA | ||
.idea | ||
.pytest_cache/ | ||
.coverage | ||
.DS_Store |
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,14 +1,13 @@ | ||
dist: xenial | ||
language: python | ||
python: | ||
- '3.5' | ||
- '3.6' | ||
- '3.7' | ||
install: | ||
- python setup.py install | ||
- pip install pytest-cov | ||
script: | ||
- pytest --cov=pyas2lib | ||
- pytest --cov=pyas2lib --cov-config .coveragerc | ||
after_success: | ||
- pip install codecov | ||
- codecov |
Oops, something went wrong.