Skip to content

Commit

Permalink
Fully typed project (#11)
Browse files Browse the repository at this point in the history
* The project is now fully typed

Signed-off-by: Pedro Algarvio <palgarvio@vmware.com>

* Update Github workflow

Signed-off-by: Pedro Algarvio <palgarvio@vmware.com>
  • Loading branch information
s0undt3ch committed Dec 29, 2021
1 parent 54a66d7 commit 4fcb6e9
Show file tree
Hide file tree
Showing 41 changed files with 1,728 additions and 1,042 deletions.
9 changes: 6 additions & 3 deletions .coveragerc
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ relative_files = True
omit =
.nox/*
setup.py
noxfile.py

[report]
# Regexes for lines to exclude from consideration
Expand All @@ -20,24 +21,26 @@ exclude_lines =

# Don't complain if tests don't hit defensive assertion code:
raise AssertionError
raise NotImplemented
raise NotImplementedError

# Don't complain if non-runnable code isn't run:
if 0:
if False:
if __name__ == .__main__.:
if TYPE_CHECKING:

omit =
.nox/*
setup.py
src/pytest_helpers_namespace/version.py
tests/support/coverage/sitecustomize.py
noxfile.py


ignore_errors = True

[paths]
source =
src/pytest_helpers_namespace
src/pytest_helpers_namespace/
**/site-packages/pytest_helpers_namespace/
testsuite =
tests/
14 changes: 14 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# See GitHub's Docs About Code Owners
# for more info about the CODEOWNERS file


# This is a comment.
# Each line is a file pattern followed by one or more owners.

# These owners will be the default owners for everything in
# the repo. Unless a later match takes precedence,
# @and will be requested for
# review when someone opens a pull request.

# Team Core
* @saltstack/team-core
Loading

0 comments on commit 4fcb6e9

Please sign in to comment.