30 lines
490 B
Markdown
30 lines
490 B
Markdown
# Test Package
|
|
|
|
A simple Python package for testing CI templates.
|
|
|
|
## Features
|
|
|
|
- Basic calculator operations
|
|
- Utility functions
|
|
- Comprehensive test suite
|
|
- Type hints
|
|
- Code quality tools integration
|
|
|
|
## Development
|
|
|
|
```bash
|
|
# Install dependencies
|
|
uv sync --all-extras
|
|
|
|
# Run tests
|
|
uv run pytest
|
|
|
|
# Run code quality checks
|
|
uv run mypy .
|
|
uv run ruff check .
|
|
uv run ruff format --check .
|
|
```
|
|
|
|
## Testing CI Templates
|
|
|
|
This project is used to test the CI templates in the parent repository. |