]> git.ipfire.org Git - thirdparty/knot-resolver.git/commitdiff
scripts/poe-tasks: scripts and pyproject.toml tasks names unification
authorAleš Mrázek <ales.mrazek@nic.cz>
Thu, 1 Aug 2024 13:46:22 +0000 (15:46 +0200)
committerAleš Mrázek <ales.mrazek@nic.cz>
Mon, 26 Aug 2024 12:28:10 +0000 (14:28 +0200)
pyproject.toml
scripts/poe-tasks/check [moved from scripts/poe-tasks/codecheck with 100% similarity]
scripts/poe-tasks/configure [moved from scripts/poe-tasks/meson-configure with 100% similarity]

index 4dcba00e45b56b7303d3ac9a2bb27d1ef46e91ad..4263fc4e203a38904866620a4dc06662767acd65 100644 (file)
@@ -69,12 +69,12 @@ kresctl = 'knot_resolver_manager.cli.main:main'
 knot-resolver = 'knot_resolver_manager.__main__:run'
 
 [tool.poe.tasks]
-configure = { cmd = "scripts/poe-tasks/meson-configure", help = "Configure Knot Resolver daemon" }
+configure = { cmd = "scripts/poe-tasks/configure", help = "Configure Knot Resolver daemon" }
 run = { cmd = "scripts/poe-tasks/run", help = "Run the manager" }
 run-debug = { cmd = "scripts/poe-tasks/run-debug", help = "Run the manager under debugger" }
 docs = { cmd = "scripts/poe-tasks/docs", help = "Create HTML documentation" }
 test = { shell = "env PYTHONPATH=. pytest --junitxml=unit.junit.xml --cov=manager/knot_resolver_manager --show-capture=all tests/manager", help = "Run tests" }
-check = { cmd = "scripts/poe-tasks/codecheck", help = "Run static code analysis" }
+check = { cmd = "scripts/poe-tasks/check", help = "Run static code analysis" }
 format = { shell = "black manager/knot_resolver_manager/ tests/manager scripts/create_setup.py manager/build_c_extensions.py; isort .", help = "Run code formatter" }
 fixdeps = { shell = "poetry install; npm install; npm update", help = "Install/update dependencies according to configuration files"}
 examples = { cmd = "scripts/poe-tasks/examples", help = "Validate all configuration examples" }