Skip to content

Commit

Permalink
envoy.base.checker: Cleanups and features (#165)
Browse files Browse the repository at this point in the history
cleanups:

- fix/improve summary (Fix #159)
- test cleanups

features:

- async check queue
- data preloading
- check disabling

Signed-off-by: Ryan Northey <ryan@synca.io>
  • Loading branch information
phlax authored Jan 13, 2022
1 parent a42212d commit 9c00d5b
Show file tree
Hide file tree
Showing 7 changed files with 1,770 additions and 273 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ pypi: https://pypi.org/project/envoy.abstract.command

#### [envoy.base.checker](envoy.base.checker)

version: 0.0.4.dev0
version: 0.1.0

pypi: https://pypi.org/project/envoy.base.checker

Expand Down
2 changes: 1 addition & 1 deletion envoy.base.checker/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.4-dev
0.1.0
6 changes: 5 additions & 1 deletion envoy.base.checker/envoy/base/checker/__init__.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,19 @@

from . import decorators
from .checker import (
AsyncChecker,
BaseChecker,
BazelChecker,
Checker,
CheckerSummary)
from .decorators import preload


__all__ = (
"AsyncChecker",
"BaseChecker",
"BazelChecker",
"Checker",
"CheckerSummary")
"CheckerSummary",
"decorators",
"preload")
Loading

0 comments on commit 9c00d5b

Please sign in to comment.