Skip to content

Commit

Permalink
v2022.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Khvatov, Alexander committed Dec 15, 2021
0 parents commit 3801666
Show file tree
Hide file tree
Showing 160 changed files with 20,289 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
[run]
branch = True
disable_warnings = no-data-collected
omit =
*/.local/*
/usr/*
*/test_*
# FIXME: Will be enabled when GSE cover this files
checkers_py/intel_gpu_detector_checker.py
checkers_py/oneapi_gpu_checker.py
# FIXME: Will be enabled later
modules/db_downloader.py

source =
modules/
checkers_py/

[paths]
source =
tests/
*/tests/

[report]
precision = 2
ignore_errors = True
exclude_lines =
# Have to re-enable the standard pragma
pragma: no cover
def __repr__
if self\.debug
raise AssertionError
raise NotImplementedError
if 0:
if __name__ == .__main__.:

[html]
directory = python_coverage_report

[json]
pretty_print = True
output = python_coverage_report/index.json
5 changes: 5 additions & 0 deletions .flake8
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[flake8]
max-line-length = 110
statistics = True
count = True
per-file-ignores = __init__.py: F401,F403,F405
25 changes: 25 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
wp
*.swo
.DS_Store
*.o
*.d
*.so*
__pycache__
build*
tags
.vscode*
CMakeLists.txt.user*
.idea*
*.mo
.clangd/*
*.pyc
*.mypy_cache/
.coverage
python_coverage_report
python_coverage_report.json
devcontainer.json
launch.json
integration_tests_output
.settings
.cproject
.project
Loading

0 comments on commit 3801666

Please sign in to comment.