-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Christian Heimes <cheimes@redhat.com>
- Loading branch information
Christian Heimes
committed
Nov 24, 2017
1 parent
4c9c526
commit 8955a32
Showing
7 changed files
with
71 additions
and
3 deletions.
There are no files selected for viewing
This file contains hidden or 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,26 @@ | ||
| [run] | ||
| branch = True | ||
| source = | ||
| Lib/ | ||
| omit = | ||
| Lib/slapdtest.py | ||
|
|
||
| [paths] | ||
| source = | ||
| Lib/ | ||
| .tox/*/lib/python*/site-packages/ | ||
|
|
||
| [report] | ||
| ignore_errors = False | ||
| precision = 1 | ||
| exclude_lines = | ||
| pragma: no cover | ||
| raise NotImplementedError | ||
| if 0: | ||
| if __name__ == .__main__.: | ||
| if PY2 | ||
| if not PY2 | ||
|
|
||
| [html] | ||
| directory = build/htmlcov | ||
| title = python-ldap coverage report |
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -4,6 +4,8 @@ | |
| *.pyc | ||
| __pycache__/ | ||
| .tox | ||
| .coverage* | ||
| !.coveragerc | ||
|
|
||
| # shared libs installed by 'setup.py test' | ||
| /Lib/*.so* | ||
|
|
||
This file contains hidden or 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
This file contains hidden or 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,11 @@ | ||
| .NOTPARALLEL: | ||
|
|
||
| .PHONY: all | ||
| all: | ||
|
|
||
| .PHONY: clean | ||
| clean: | ||
| rm -rf build dist *.egg-info $(VENV) .tox | ||
| rm -f .coverage .coverage.* | ||
| find . -name '*.py[co]' -or -name '*.so*' -or -name '*.dylib' -delete | ||
| find . -depth -name __pycache__ -exec rm -rf {} \; |
This file contains hidden or 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
This file contains hidden or 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,15 @@ | ||
| # modules without any tests | ||
| import ldap.async | ||
| import ldap.controls.deref | ||
| import ldap.controls.openldap | ||
| import ldap.controls.pagedresults | ||
| import ldap.controls.ppolicy | ||
| import ldap.controls.psearch | ||
| import ldap.controls.pwdpolicy | ||
| import ldap.controls.readentry | ||
| import ldap.controls.sessiontrack | ||
| import ldap.controls.sss | ||
| import ldap.controls.vlv | ||
| import ldap.logger | ||
| import ldap.resiter | ||
| import ldap.syncrepl |
This file contains hidden or 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