Files
decman/DEVELOPMENT.md
T
2025-12-12 17:03:15 +02:00

42 lines
405 B
Markdown

# Commands used in development
Before committing ensure all tests pass and format files.
## Running
Run decman as root to test all changes:
```sh
sudo uv run decman
```
## Testing
Run unit tests:
```sh
uv run python -m unittest
```
## Formatting
Format all files:
```sh
uv run ruff format
```
## Linting
Run lints:
```sh
uv run ruff check
```
Apply fixes:
```sh
uv run ruff check --fix
```