separate unit/integration tests

This commit is contained in:
sebthom
2022-02-10 05:14:44 +01:00
parent c3275a375b
commit 0b46322a47
4 changed files with 26 additions and 7 deletions

View File

@@ -295,9 +295,12 @@ updated_on: # set automatically
> Please read [CONTRIBUTING.md](CONTRIBUTING.md) before contributing code. Thank you!
- Format source code: `pdm run format`
- Running unit tests: `pdm run test`
- Running linter: `pdm run lint`
- Creating platform-specific executable: `pdm run compile`
- Run tests:
- unit tests: `pdm run utest`
- integration tests: `pdm run itest`
- all tests: `pdm run test`
- Run linter: `pdm run lint`
- Create platform-specific executable: `pdm run compile`
- Application bootstrap works like this:
```python
pdm run app