15
0
Files
python-argcomplete/without_zsh.patch
Daniel Garcia 989d8805ef - Add without_zsh.patch
- Delete skip_tcsh_tests.patch
- Delete without_fish.patch
- Update to 3.0.8:
  * Test suite shell wrapper: Accept OSError on exit
- 3.0.7:
  * Test suite: Use general regex to cut zsh reset ANSI sequences (#425)
- 3.0.6:
  * Allow importlib-metadata 6.x; skip test failures on Python 3.7 (#420, #424)
    * Note completers can return iterables of strings, not just lists (#422)
    * Documentation and test improvements
- 3.0.5:
  * Call _default as fallback in zsh global completion hook
    * Begin support for mapping-emitting completers
- 3.0.4:
  * activate-global-python-argcomplete: do not overwrite existing dotfile in user directory
  * Add NOTICE file
  * Establish long term name for split_line as argcomplete.lexers.split_line
- 3.0.3:
  * Re-add split_line to API (#419)
- 3.0.2:
  * Fix zsh default completion issues
- 3.0.1:
  * Fix zsh autoload issues
- 3.0.0:
  * Fully support zsh. Argcomplete now supports completion
    descriptions and global completion in zsh.
  * Clean up top level namespace.
  * Documentation and test improvements.
- 2.1.2:

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-argcomplete?expand=0&rev=50
2023-05-05 11:27:50 +00:00

28 lines
929 B
Diff

Index: argcomplete-3.0.8/test/test.py
===================================================================
--- argcomplete-3.0.8.orig/test/test.py
+++ argcomplete-3.0.8/test/test.py
@@ -1299,22 +1299,6 @@ class TestBash(TestBashZshBase, unittest
self.test_simple_completion()
-class TestZsh(TestBashZshBase, unittest.TestCase):
- expected_failures = [
- "test_parse_special_characters_dollar",
- "test_comp_point", # FIXME
- "test_completion_environment", # FIXME
- "test_continuation", # FIXME
- "test_wordbreak_chars", # FIXME
- ]
-
- def test_parse_special_characters(self):
- pass # FIXME: test crashes in teardown
-
- 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=-)"'