Skip to content

Vybornak2/project_template

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

package_name

package_description

Development

Environment Setup - uv

uv venv
uv sync
.venv\Scripts\activate

# Sync development group dependencies  
uv sync --dev

Pre-commit

# Update pre-commit hooks
pre-commit autoupdate 
# Install pre-commit hooks 
pre-commit install
# Run pre-commit hooks on all files without committing
pre-commit run --all-files

Testing - Pytest

# Run all tests
pytest  
# Run tests matching a specific pattern
pytest -k "test_pattern"

Linting and Formatting - Ruff

# Check for linting errors and formatting issues
ruff check .
# Fix linting errors automatically (use with caution)
ruff check . --fix

# Format code
ruff format .

Type Checking - TY

# Run type checking
ty check .

Resources

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages