mirror of
https://framagit.org/la-chariotte/la-chariotte.git
synced 2025-05-01 19:32:26 +02:00
21 lines
421 B
Markdown
21 lines
421 B
Markdown
# La Chariotte
|
|
|
|
La Chariotte est une application web sous licence libre Affera GPL, développée et maintenue par [Hashbang](https://hashbang.fr/).
|
|
|
|
## Lancer les tests et linter
|
|
|
|
Lancer les tests avec pytest :
|
|
|
|
```bash
|
|
pytest
|
|
```
|
|
|
|
Si il y a des erreurs ISORT, on peut lancer isort pour trier les fichiers :
|
|
```bash
|
|
isort .
|
|
```
|
|
|
|
Si il y a des erreurs BLACK, on peut lancer black pour linter le code :
|
|
```bash
|
|
black .
|
|
```
|