|
| 1 | +# check |
| 2 | + |
| 3 | +["acp-python-sdk:check"] |
| 4 | +depends = ["acp-python-sdk:check:*"] |
| 5 | + |
| 6 | +["acp-python-sdk:check:ruff-check"] |
| 7 | +dir = "{{config_root}}/packages/acp-python-sdk" |
| 8 | +run = "uv run ruff check" |
| 9 | + |
| 10 | +["acp-python-sdk:check:ruff-format"] |
| 11 | +dir = "{{config_root}}/packages/acp-python-sdk" |
| 12 | +run = "uv run ruff format --check" |
| 13 | + |
| 14 | +["acp-python-sdk:check:pyright"] |
| 15 | +dir = "{{config_root}}/packages/acp-python-sdk" |
| 16 | +run = "uv run pyright" |
| 17 | + |
| 18 | +# fix |
| 19 | + |
| 20 | +["acp-python-sdk:fix"] |
| 21 | +depends = ["acp-python-sdk:fix:*"] |
| 22 | + |
| 23 | +["acp-python-sdk:fix:ruff-fix"] |
| 24 | +dir = "{{config_root}}/packages/acp-python-sdk" |
| 25 | +run = "uv run ruff check --fix" |
| 26 | + |
| 27 | +["acp-python-sdk:fix:ruff-format"] |
| 28 | +dir = "{{config_root}}/packages/acp-python-sdk" |
| 29 | +run = "uv run ruff format" |
| 30 | + |
| 31 | +# test |
| 32 | + |
| 33 | +["acp-python-sdk:test"] |
| 34 | +dir = "{{config_root}}/packages/acp-python-sdk" |
| 35 | +run = "uv run pytest" |
| 36 | + |
| 37 | +# build |
| 38 | + |
| 39 | +["acp-python-sdk:build"] |
| 40 | +dir = "{{config_root}}/packages/acp-python-sdk" |
| 41 | +run = "uv build --out-dir dist" |
| 42 | + |
| 43 | +# clean |
| 44 | + |
| 45 | +["acp-python-sdk:clean"] |
| 46 | +dir = "{{config_root}}/packages/acp-python-sdk" |
| 47 | +run = "rm -rf dist" |
| 48 | + |
| 49 | +# ci |
| 50 | + |
| 51 | +["acp-python-sdk:ci:check"] |
| 52 | +depends = ["acp-python-sdk:check", "acp-python-sdk:test"] |
| 53 | + |
| 54 | +["acp-python-sdk:ci:build"] |
| 55 | +depends = ["acp-python-sdk:build"] |
0 commit comments