[tooling] Create simple justfile
Let's see how well it works out for us
This commit is contained in:
parent
71c492c648
commit
d635b7ba05
1 changed files with 18 additions and 0 deletions
18
justfile
Normal file
18
justfile
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
|
||||||
|
test:
|
||||||
|
# pytest options can be found in pyproject.toml
|
||||||
|
# look for [tool.pytest.ini_options]
|
||||||
|
@python -m pytest
|
||||||
|
|
||||||
|
test-coverage:
|
||||||
|
# here we allow extra arguments to be passed to pytest
|
||||||
|
@python -m pytest --cov=src --cov-config=pyproject.toml
|
||||||
|
|
||||||
|
lint:
|
||||||
|
@ruff check .
|
||||||
|
|
||||||
|
lint-fix:
|
||||||
|
@ruff check --fix .
|
||||||
|
|
||||||
|
compile-dependencies:
|
||||||
|
@pip-compile-multi
|
Loading…
Reference in a new issue