Skip to content

Commit 1bb6f41

Browse files
authored
Merge pull request #178 from padovan/remove-patch-cmd
Drop patch command
2 parents e0a8851 + 83c438e commit 1bb6f41

File tree

3 files changed

+0
-105
lines changed

3 files changed

+0
-105
lines changed

kcidev/main.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
commit,
1313
config,
1414
maestro_results,
15-
patch,
1615
results,
1716
testretry,
1817
watch,
@@ -61,7 +60,6 @@ def run():
6160
cli.add_command(checkout.checkout)
6261
cli.add_command(commit.commit)
6362
cli.add_command(config.config)
64-
cli.add_command(patch.patch)
6563
cli.add_command(maestro_results.maestro_results)
6664
cli.add_command(testretry.testretry)
6765
cli.add_command(results.results)

kcidev/subcommands/patch.py

Lines changed: 0 additions & 84 deletions
This file was deleted.

tests/test_kcidev.py

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -47,25 +47,6 @@ def test_kcidev_commit_help(kcidev_config):
4747
assert result.returncode == 0
4848

4949

50-
def test_kcidev_patch_help(kcidev_config):
51-
command = [
52-
"poetry",
53-
"run",
54-
"kci-dev",
55-
"--settings",
56-
kcidev_config,
57-
"patch",
58-
"--help",
59-
]
60-
result = run(command, stdout=PIPE, stderr=PIPE, universal_newlines=True)
61-
print("returncode: " + str(result.returncode))
62-
print("#### stdout ####")
63-
print(result.stdout)
64-
print("#### stderr ####")
65-
print(result.stderr)
66-
assert result.returncode == 0
67-
68-
6950
def test_kcidev_results_help(kcidev_config):
7051
command = [
7152
"poetry",

0 commit comments

Comments
 (0)