-
Notifications
You must be signed in to change notification settings - Fork 1
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 #20 from KatharaFramework/develop
Version 0.1.7
- Loading branch information
Showing
38 changed files
with
583 additions
and
450 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
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
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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
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 |
---|---|---|
|
@@ -2,4 +2,5 @@ kathara>=3.7.7 | |
jc>=1.24.0 | ||
openpyxl>=3.1.2 | ||
tqdm>=4 | ||
coloredlogs~=15.0.1 | ||
coloredlogs~=15.0.1 | ||
jsonschema>=4.23.0 |
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
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
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,9 +1,15 @@ | ||
import logging | ||
from abc import ABC | ||
from Kathara.manager.Kathara import Kathara | ||
from Kathara.model.Lab import Lab | ||
|
||
|
||
class AbstractCheck(ABC): | ||
|
||
def __init__(self, description: str = None): | ||
__slots__ = ["description", "logger", "kathara_manager", "lab"] | ||
|
||
def __init__(self, lab: Lab, description: str = None): | ||
self.description: str = description | ||
self.logger = logging.getLogger("kathara-lab-checker") | ||
self.kathara_manager: Kathara = Kathara.get_instance() | ||
self.lab: Lab = lab |
Oops, something went wrong.