forked from pool/python-argcomplete
* Respect user choice in activate-global-python-argcomplete * Escape colon in zsh completions. Fixes #456 * Call \_default as a fallback in zsh global completion OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-argcomplete?expand=0&rev=63
26 lines
864 B
Diff
26 lines
864 B
Diff
Index: argcomplete-3.1.6/test/test.py
|
|
===================================================================
|
|
--- argcomplete-3.1.6.orig/test/test.py
|
|
+++ argcomplete-3.1.6/test/test.py
|
|
@@ -1299,20 +1299,6 @@ class TestBash(TestBashZshBase, unittest
|
|
self.test_simple_completion()
|
|
|
|
|
|
-class TestZsh(TestBashZshBase, unittest.TestCase):
|
|
- skipped = [
|
|
- "test_parse_special_characters",
|
|
- "test_parse_special_characters_dollar",
|
|
- "test_comp_point", # FIXME
|
|
- "test_completion_environment", # FIXME
|
|
- "test_continuation", # FIXME
|
|
- "test_wordbreak_chars", # FIXME
|
|
- ]
|
|
-
|
|
- def repl_provider(self):
|
|
- return zsh_repl()
|
|
-
|
|
-
|
|
@unittest.skipIf(BASH_MAJOR_VERSION < 4, "complete -D not supported")
|
|
class TestBashGlobal(TestBash):
|
|
install_cmd = 'eval "$(activate-global-python-argcomplete --dest=-)"'
|