argos/docs/developer/tests.md
Alexis Métaireau 1948658900 build: use make test rather than make tests
Mainly to match with other projects semantics.
2024-04-05 13:19:26 +02:00

21 lines
427 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Tests and linting
## Tests
To launch the tests suite:
```bash
make test
```
## Linting
There is 4 lintings checks:
- `make djlint` will check the linting of the HTML templates
- `make pylint` will check the linting of Argos source code
- `make pylint-alembic` will check the linting of Alembics migrations files
- `make ruff` will check the linting of all files
You can launch all of them with:
```bash
make lint
```