summaryrefslogtreecommitdiffstats
path: root/pyproject.toml
diff options
context:
space:
mode:
authorAleš Mrázek <ales.mrazek@nic.cz>2024-08-01 15:46:22 +0200
committerAleš Mrázek <ales.mrazek@nic.cz>2024-08-26 14:28:10 +0200
commitee6768ee7572f02a768b7429169b9fdd611799ef (patch)
tree0db5c167778a9a5c55e21763456fb140a0baa8e5 /pyproject.toml
parentscripts: subdirectory for ./poe tasks created (diff)
downloadknot-resolver-ee6768ee7572f02a768b7429169b9fdd611799ef.tar.xz
knot-resolver-ee6768ee7572f02a768b7429169b9fdd611799ef.zip
scripts/poe-tasks: scripts and pyproject.toml tasks names unification
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyproject.toml b/pyproject.toml
index 4dcba00e..4263fc4e 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -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" }