From: Aleš Mrázek Date: Thu, 13 Jun 2024 04:07:10 +0000 (+0200) Subject: manager/pyproject.toml: unused and non-functional tasks removed X-Git-Tag: v6.0.8~10^2~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=37e0e25a1609d786606fed584c7a0bc4cc9262b6;p=thirdparty%2Fknot-resolver.git manager/pyproject.toml: unused and non-functional tasks removed --- diff --git a/manager/pyproject.toml b/manager/pyproject.toml index 4352616fd..256a38124 100644 --- a/manager/pyproject.toml +++ b/manager/pyproject.toml @@ -66,8 +66,6 @@ test = { shell = "env PYTHONPATH=. pytest --junitxml=unit.junit.xml --cov=knot_r check = { cmd = "scripts/codecheck", help = "Run static code analysis" } format = { shell = "black knot_resolver_manager/ tests/ scripts/ 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"} -commit = { shell = "scripts/commit", help = "Invoke every single check before commiting" } -container = { cmd = "scripts/container.py", help = "Manage containers" } examples = { cmd = "scripts/examples", help = "Validate all configuration examples" } kresctl = { script = "knot_resolver_manager.cli.main:main", cwd="${POE_PWD}", help="run kresctl" } kresctl-nocwd = { script = "knot_resolver_manager.cli.main:main", help="run kresctl" } # Python <3.8 and poethepoet <0.22.0 compatibility (see also `./poe`) @@ -79,8 +77,6 @@ clean = """ dist """ gen-setuppy = { shell = "python scripts/create_setup.py > setup.py", help = "Generate setup.py file for backwards compatibility" } -integration = {cmd = "python tests/integration/runner.py", help = "Run integration tests" } -configure-vscode = {cmd = "scripts/configure-vscode", help = "Create VSCode configuration for debugging, virtual envs etc" } man = {cmd = "scripts/man", help = "Display manpage from sources" } [tool.black]