This repository was archived by the owner on Feb 20, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ poetry := " python -m poetry"
2+ poetry_run := poetry + " run"
3+
14default :
25 just --list --unsorted
36
47setup :
5- python -m poetry install
8+ {{ poetry }} install
69
710lint :
8- python -m poetry run black --check .
9- python -m poetry run isort --check .
10- python -m poetry run flake8 .
11- python -m poetry run mypy
11+ {{ poetry_run }} black --check .
12+ {{ poetry_run }} isort --check .
13+ {{ poetry_run }} flake8 .
14+ {{ poetry_run }} mypy
1215
1316test :
14- python -m poetry run pytest
17+ {{ poetry_run }} pytest
1518
1619format :
17- python - m poetry run black .
18- python - m poetry run isort .
20+ {{ poetry_run }} black .
21+ {{ poetry_run }} isort .
1922
2023
2124build-doc :
22- cd docs ; python -m poetry run sphinx-build -W . _build/ html
25+ cd docs ; {{ poetry_run }} sphinx-build -W . _build/ html
2326
2427dev-doc :
25- cd docs ; python -m poetry run sphinx-autobuild . _build/ html
28+ cd docs ; {{ poetry_run }} run sphinx-autobuild . _build/ html
2629
2730deploy-doc : build-doc
28- ghp-import --push --force --no-jekyll docs/ _build/ html/
31+ {{ poetry_run }} ghp-import --push --force --no-jekyll docs/ _build/ html/
2932
You can’t perform that action at this time.
0 commit comments