diff options
author | Aleš Mrázek <ales.mrazek@nic.cz> | 2024-10-11 11:15:35 +0200 |
---|---|---|
committer | Aleš Mrázek <ales.mrazek@nic.cz> | 2024-10-17 14:39:47 +0200 |
commit | 323181d020508c71c715f27a7e7b218eedf3204b (patch) | |
tree | 88c72b61a7cea1bd9c7b2e6a732eb99bb5860a4f /pyproject.toml | |
parent | .gitlab-ci.manager.yml: install optional deps (diff) | |
download | knot-resolver-323181d020508c71c715f27a7e7b218eedf3204b.tar.xz knot-resolver-323181d020508c71c715f27a7e7b218eedf3204b.zip |
scripts/poe-tasks: separate lint from other check script
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/pyproject.toml b/pyproject.toml index 261e239b..5e659319 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -72,9 +72,10 @@ configure = { cmd = "scripts/poe-tasks/configure", help = "(Re)configure Meson b run = { cmd = "scripts/poe-tasks/run", help = "Run Knot Resolver" } run-debug = { cmd = "scripts/poe-tasks/run-debug", help = "Debug Knot Resolver with debugpy" } doc = { cmd = "scripts/poe-tasks/doc", help = "Create Knot Resolver HTML documentation" } -doc-schema = { cmd = "scripts/poe-tasks/doc-schema", help = "Generate a JSON schema of the Knot Resolver configuration"} +schema = { cmd = "scripts/poe-tasks/schema", help = "Generate a JSON schema of the Knot Resolver configuration"} test = { cmd = "scripts/poe-tasks/test", help = "Run pytest unit tests" } -check = { cmd = "scripts/poe-tasks/check", help = "Check that all dependencies are installed and run static code analysis" } +lint = { cmd = "scripts/poe-tasks/lint", help = "Run static code analysis (Ruff) and check typing (Mypy)" } +check = { cmd = "scripts/poe-tasks/check", help = "Check that all dependencies are properly installed and generated files are not behind project." } examples = { cmd = "scripts/poe-tasks/examples", help = "Validate all configuration examples using 'kresctl validate' utility" } gen-constantspy = { cmd = "scripts/poe-tasks/gen-constantspy", help = "Generate 'constants.py' module using Meson configured options" } gen-setuppy = { cmd = "scripts/poe-tasks/gen-setuppy", help = "Generate 'setup.py' file for backwards compatibility" } |