summaryrefslogtreecommitdiff
path: root/dev-python/click-plugins/files
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-12 11:50:53 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-12 11:50:53 -0500
commit290aebdea65a02557706eaeda477fef0437b6a48 (patch)
treef87a939169a508a2e943570501b64cc16b411cda /dev-python/click-plugins/files
parent6783ddcd4b73d9ce586a71770caed352bec93b16 (diff)
downloadbaldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.gz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.xz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.zip
Adding metadata
Diffstat (limited to 'dev-python/click-plugins/files')
-rw-r--r--dev-python/click-plugins/files/click-plugins-1.1.1.2-click82.patch58
1 files changed, 0 insertions, 58 deletions
diff --git a/dev-python/click-plugins/files/click-plugins-1.1.1.2-click82.patch b/dev-python/click-plugins/files/click-plugins-1.1.1.2-click82.patch
deleted file mode 100644
index f6e8024bb04f..000000000000
--- a/dev-python/click-plugins/files/click-plugins-1.1.1.2-click82.patch
+++ /dev/null
@@ -1,58 +0,0 @@
-diff --git a/tests/test_plugins.py b/tests/test_plugins.py
-index 935f37a..26549ef 100644
---- a/tests/test_plugins.py
-+++ b/tests/test_plugins.py
-@@ -78,7 +78,7 @@ def test_registered():
- def test_register_and_run(runner):
-
- result = runner.invoke(good_cli)
-- assert result.exit_code == 0
-+ assert result.exit_code == 2
-
- for ep in iter_entry_points('_test_click_plugins.test_plugins'):
- cmd_result = runner.invoke(good_cli, [ep.name, 'something'])
-@@ -89,7 +89,7 @@ def test_register_and_run(runner):
- def test_broken_register_and_run(runner):
-
- result = runner.invoke(broken_cli)
-- assert result.exit_code == 0
-+ assert result.exit_code == 2
- assert u'\U0001F4A9' in result.output or u'\u2020' in result.output
-
- for ep in iter_entry_points('_test_click_plugins.broken_plugins'):
-@@ -108,7 +108,7 @@ def test_group_chain(runner):
- pass
-
- result = runner.invoke(good_cli)
-- assert result.exit_code == 0
-+ assert result.exit_code == 2
- assert sub_cli.name in result.output
- for ep in iter_entry_points('_test_click_plugins.test_plugins'):
- assert ep.name in result.output
-@@ -121,7 +121,7 @@ def test_group_chain(runner):
- pass
-
- result = runner.invoke(good_cli, ['sub-cli-plugins'])
-- assert result.exit_code == 0
-+ assert result.exit_code == 2
- for ep in iter_entry_points('_test_click_plugins.test_plugins'):
- assert ep.name in result.output
-
-@@ -142,7 +142,7 @@ def test_exception():
-
- def test_broken_register_and_run_with_help(runner):
- result = runner.invoke(broken_cli)
-- assert result.exit_code == 0
-+ assert result.exit_code == 2
- assert u'\U0001F4A9' in result.output or u'\u2020' in result.output
-
- for ep in iter_entry_points('_test_click_plugins.broken_plugins'):
-@@ -153,7 +153,7 @@ def test_broken_register_and_run_with_help(runner):
-
- def test_broken_register_and_run_with_args(runner):
- result = runner.invoke(broken_cli)
-- assert result.exit_code == 0
-+ assert result.exit_code == 2
- assert u'\U0001F4A9' in result.output or u'\u2020' in result.output
-
- for ep in iter_entry_points('_test_click_plugins.broken_plugins'):