chore: update pyproject.toml

This commit is contained in:
sebthom
2025-05-12 14:08:50 +02:00
parent ed83052fa4
commit f2e6f0b20b
3 changed files with 15 additions and 7 deletions

View File

@@ -420,10 +420,11 @@ By default a new browser process will be launched. To reuse a manually launched
- Format source code: `pdm run format`
- Run tests:
- unit tests: `pdm run utest`
- integration tests: `pdm run itest`
- all tests: `pdm run test`
- unit tests: `pdm run utest` - with coverage: `pdm run utest:cov`
- integration tests: `pdm run itest` - with coverage: `pdm run itest:cov`
- all tests: `pdm run test` - with coverage: `pdm run test:cov`
- Run syntax checks: `pdm run lint`
- Linting issues found by ruff can be auto-fixed using `pdm run lint:fix`
- Create platform-specific executable: `pdm run compile`
- Application bootstrap works like this:
```python