Skip to content

Commit d804d17

Browse files
authored
Merge pull request #27 from KatharaFramework/develop
Add a CheckFactory for instanciating the checks dinamically + refactor check results
2 parents 088c2bf + 1633192 commit d804d17

File tree

92 files changed

+4265
-3925
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

92 files changed

+4265
-3925
lines changed

.gitignore

Lines changed: 111 additions & 109 deletions
Original file line numberDiff line numberDiff line change
@@ -1,109 +1,111 @@
1-
# Byte-compiled / optimized / DLL files
2-
__pycache__/
3-
*.py[cod]
4-
*$py.class
5-
6-
# C extensions
7-
*.so
8-
9-
# Distribution / packaging
10-
.Python
11-
env/
12-
build/
13-
develop-eggs/
14-
dist/
15-
downloads/
16-
eggs/
17-
.eggs/
18-
lib/
19-
lib64/
20-
parts/
21-
sdist/
22-
var/
23-
*.egg-info/
24-
.installed.cfg
25-
*.egg
26-
27-
# PyInstaller
28-
# Usually these files are written by a python script from a template
29-
# before PyInstaller builds the exe, so as to inject date/other infos into it.
30-
*.manifest
31-
MANIFEST
32-
33-
34-
# Installer logs
35-
pip-log.txt
36-
pip-delete-this-directory.txt
37-
38-
# Unit test / coverage reports
39-
htmlcov/
40-
.tox/
41-
.coverage
42-
.coverage.*
43-
.cache
44-
nosetests.xml
45-
coverage.xml
46-
*,cover
47-
.hypothesis/
48-
.pytest_cache/
49-
50-
# Translations
51-
*.mo
52-
*.pot
53-
54-
# Django stuff:
55-
*.log
56-
local_settings.py
57-
58-
# Flask stuff:
59-
instance/
60-
.webassets-cache
61-
62-
# Scrapy stuff:
63-
.scrapy
64-
65-
# Sphinx documentation
66-
docs/_build/
67-
68-
# PyBuilder
69-
target/
70-
71-
# IPython Notebook
72-
.ipynb_checkpoints
73-
74-
# pyenv
75-
.python-version
76-
77-
# celery beat schedule file
78-
celerybeat-schedule
79-
80-
# dotenv
81-
.env
82-
83-
# virtualenv
84-
/.venv/
85-
/venv/
86-
/ENV/
87-
88-
# Spyder project settings
89-
.spyderproject
90-
91-
# Rope project settings
92-
.ropeproject
93-
94-
# temp files
95-
*.sh~
96-
Dockerfile~
97-
*.py~
98-
99-
# Packages
100-
*.rpm
101-
*.tar.zst
102-
103-
/config
104-
/.vscode/
105-
/.vs/
106-
107-
.idea/
108-
109-
scripts/pip-package/dist/*
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# C extensions
7+
*.so
8+
9+
# Distribution / packaging
10+
.Python
11+
env/
12+
build/
13+
develop-eggs/
14+
dist/
15+
downloads/
16+
eggs/
17+
.eggs/
18+
lib/
19+
lib64/
20+
parts/
21+
sdist/
22+
var/
23+
*.egg-info/
24+
.installed.cfg
25+
*.egg
26+
27+
# PyInstaller
28+
# Usually these files are written by a python script from a template
29+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
30+
*.manifest
31+
MANIFEST
32+
33+
34+
# Installer logs
35+
pip-log.txt
36+
pip-delete-this-directory.txt
37+
38+
# Unit test / coverage reports
39+
htmlcov/
40+
.tox/
41+
.coverage
42+
.coverage.*
43+
.cache
44+
nosetests.xml
45+
coverage.xml
46+
*,cover
47+
.hypothesis/
48+
.pytest_cache/
49+
50+
# Translations
51+
*.mo
52+
*.pot
53+
54+
# Django stuff:
55+
*.log
56+
local_settings.py
57+
58+
# Flask stuff:
59+
instance/
60+
.webassets-cache
61+
62+
# Scrapy stuff:
63+
.scrapy
64+
65+
# Sphinx documentation
66+
docs/_build/
67+
68+
# PyBuilder
69+
target/
70+
71+
# IPython Notebook
72+
.ipynb_checkpoints
73+
74+
# pyenv
75+
.python-version
76+
77+
# celery beat schedule file
78+
celerybeat-schedule
79+
80+
# dotenv
81+
.env
82+
83+
# virtualenv
84+
/.venv/
85+
/venv/
86+
/ENV/
87+
88+
# Spyder project settings
89+
.spyderproject
90+
91+
# Rope project settings
92+
.ropeproject
93+
94+
# temp files
95+
*.sh~
96+
Dockerfile~
97+
*.py~
98+
99+
# Packages
100+
*.rpm
101+
*.tar.zst
102+
103+
/config
104+
/.vscode/
105+
/.vs/
106+
107+
.idea/
108+
109+
scripts/pip-package/dist/*
110+
*.csv
111+
*.xslx

0 commit comments

Comments
 (0)