added tests

This commit is contained in:
Brian Bjarke Jensen
2025-09-19 19:38:10 +02:00
parent 0abd398c10
commit b426d43de0
16 changed files with 1919 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
# 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.