Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .coverage
Binary file not shown.
57 changes: 57 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
# Byte-compiled / optimized / temporary Python files
__pycache__/
*.py[cod]
*$py.class

# Virtual environments
.venv/
venv/
env/
ENV/
env.bak/
venv.bak/

# VSCode settings
.vscode/

# PyCharm settings
.idea/
*.iml

# Pytest and test cache
.pytest_cache/
.cache/

# Test reports and logs
*.log
*.out

# Coverage reports
# (htmlcov и .coverage намеренно НЕ игнорируются)
*.cover
*.py.cover
coverage.xml

# Distribution / packaging
build/
dist/
*.egg-info/
.eggs/
MANIFEST

# Jupyter Notebook checkpoints
.ipynb_checkpoints/

# System files (macOS / Windows)
.DS_Store
Thumbs.db

# mypy type checker cache
.mypy_cache/

# If you use Ruff linter
.ruff_cache/

# If you use Cursor editor
.cursorignore
.cursorindexingignore
2 changes: 2 additions & 0 deletions htmlcov/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

195 changes: 195 additions & 0 deletions htmlcov/class_index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading