boost-dx-tutorial/justfile
bronsen d635b7ba05 [tooling] Create simple justfile
Let's see how well it works out for us
2024-11-21 12:19:37 +01:00

18 lines
347 B
Makefile

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