test_action_activation (test.test.TestArgcomplete.test_action_activation) ... ok test_action_activation_with_subparser (test.test.TestArgcomplete.test_action_activation_with_subparser) ... ok test_append_space (test.test.TestArgcomplete.test_append_space) ... ok test_basic_completion (test.test.TestArgcomplete.test_basic_completion) ... ok test_choices (test.test.TestArgcomplete.test_choices) ... ok test_completers (test.test.TestArgcomplete.test_completers) ... ok test_custom_validator (test.test.TestArgcomplete.test_custom_validator) ... ok test_default_completer (test.test.TestArgcomplete.test_default_completer) ... ok test_different_validators (test.test.TestArgcomplete.test_different_validators) ... ok test_directory_completion (test.test.TestArgcomplete.test_directory_completion) ... ok test_display_completions (test.test.TestArgcomplete.test_display_completions) ... ok test_display_completions_with_aliases (test.test.TestArgcomplete.test_display_completions_with_aliases) ... ok test_escape_special_chars (test.test.TestArgcomplete.test_escape_special_chars) ... ok test_exclusive (test.test.TestArgcomplete.test_exclusive) ... ok test_exclusive_class (test.test.TestArgcomplete.test_exclusive_class) ... ok test_file_completion (test.test.TestArgcomplete.test_file_completion) ... ok test_filescompleter_filetype_integration (test.test.TestArgcomplete.test_filescompleter_filetype_integration) ... $(@D)/test/test.py:362: PendingDeprecationWarning: FileType is deprecated. Simply open files after parsing arguments. parser.add_argument("--r", type=argparse.FileType("r")) $(@D)/test/test.py:363: PendingDeprecationWarning: FileType is deprecated. Simply open files after parsing arguments. parser.add_argument("--w", type=argparse.FileType("w")) $(@D)/test/test.py:362: PendingDeprecationWarning: FileType is deprecated. Simply open files after parsing arguments. parser.add_argument("--r", type=argparse.FileType("r")) $(@D)/test/test.py:363: PendingDeprecationWarning: FileType is deprecated. Simply open files after parsing arguments. parser.add_argument("--w", type=argparse.FileType("w")) ok test_mixed_optional_positional (test.test.TestArgcomplete.test_mixed_optional_positional) ... ok test_nargs_one_or_more (test.test.TestArgcomplete.test_nargs_one_or_more) ... ok test_nargs_optional (test.test.TestArgcomplete.test_nargs_optional) ... ok test_nargs_zero_or_more (test.test.TestArgcomplete.test_nargs_zero_or_more) ... ok test_non_ascii (test.test.TestArgcomplete.test_non_ascii) ... ok test_non_str_choices (test.test.TestArgcomplete.test_non_str_choices) ... ok test_option_help (test.test.TestArgcomplete.test_option_help) ... ok test_optional_long_short_filtering (test.test.TestArgcomplete.test_optional_long_short_filtering) ... ok test_optional_nargs (test.test.TestArgcomplete.test_optional_nargs) ... ok test_positional_remainder (test.test.TestArgcomplete.test_positional_remainder) ... ok test_readline_entry_point (test.test.TestArgcomplete.test_readline_entry_point) ... ok test_shellcode_utility (test.test.TestArgcomplete.test_shellcode_utility) ... ok test_skipped_completer (test.test.TestArgcomplete.test_skipped_completer) ... ok test_subparser_completers (test.test.TestArgcomplete.test_subparser_completers) ... ok test_subparsers (test.test.TestArgcomplete.test_subparsers) ... ok test_suppress_args (test.test.TestArgcomplete.test_suppress_args) ... ok test_suppress_completer (test.test.TestArgcomplete.test_suppress_completer) ... ok test_repl_multiple_complete (test.test.TestArgcompleteREPL.test_repl_multiple_complete) ... ok test_repl_parse_after_complete (test.test.TestArgcompleteREPL.test_repl_parse_after_complete) ... usage: python3.14 -m unittest [-h] --foo FOO {bar} python3.14 -m unittest: error: too few arguments usage: python3.14 -m unittest [-h] --foo FOO {bar} python3.14 -m unittest: error: argument --foo is required ok test_repl_reuse_parser_with_positional (test.test.TestArgcompleteREPL.test_repl_reuse_parser_with_positional) ... ok test_repl_subcommand (test.test.TestArgcompleteREPL.test_repl_subcommand) ... ok test_repl_subparser_parse_after_complete (test.test.TestArgcompleteREPL.test_repl_subparser_parse_after_complete) ... usage: python3.14 -m unittest foo [-h] {bar} python3.14 -m unittest foo: error: too few arguments ok test_comp_point (test.test.TestBash.test_comp_point) ... ok test_completion_environment (test.test.TestBash.test_completion_environment) ... ok test_continuation (test.test.TestBash.test_continuation) ... ok test_debug_output (test.test.TestBash.test_debug_output) ... ok test_double_quoted_completion (test.test.TestBash.test_double_quoted_completion) ... ok test_exclamation_in_double_quotes (test.test.TestBash.test_exclamation_in_double_quotes) ... expected failure test_nounset (test.test.TestBash.test_nounset) ... ok test_one_space_after_exact (test.test.TestBash.test_one_space_after_exact) Test exactly one space is appended after an exact match. ... ok test_parse_special_characters (test.test.TestBash.test_parse_special_characters) ... ok test_parse_special_characters_dollar (test.test.TestBash.test_parse_special_characters_dollar) ... expected failure test_partial_completion (test.test.TestBash.test_partial_completion) ... ok test_quoted_exact (test.test.TestBash.test_quoted_exact) ... ok test_quoted_space (test.test.TestBash.test_quoted_space) ... ok test_quotes (test.test.TestBash.test_quotes) ... ok test_simple_completion (test.test.TestBash.test_simple_completion) ... ok test_single_quoted_completion (test.test.TestBash.test_single_quoted_completion) ... ok test_single_quotes_in_double_quotes (test.test.TestBash.test_single_quotes_in_double_quotes) ... ok test_single_quotes_in_single_quotes (test.test.TestBash.test_single_quotes_in_single_quotes) ... ok test_special_characters (test.test.TestBash.test_special_characters) ... ok test_special_characters_double_quoted (test.test.TestBash.test_special_characters_double_quoted) ... ok test_special_characters_single_quoted (test.test.TestBash.test_special_characters_single_quoted) ... ok test_temp_file (test.test.TestBash.test_temp_file) ... ok test_unquoted_space (test.test.TestBash.test_unquoted_space) ... ok test_wordbreak_chars (test.test.TestBash.test_wordbreak_chars) ... ok test_comp_point (test.test.TestBashGlobal.test_comp_point) ... ok test_completion_environment (test.test.TestBashGlobal.test_completion_environment) ... ok test_console_script_module (test.test.TestBashGlobal.test_console_script_module) Test completing a console_script for a module. ... ok test_console_script_module_wheel (test.test.TestBashGlobal.test_console_script_module_wheel) Test completing a console_script for a module from a wheel. ... ok test_console_script_package (test.test.TestBashGlobal.test_console_script_package) Test completing a console_script for a package. ... ok test_console_script_package_wheel (test.test.TestBashGlobal.test_console_script_package_wheel) Test completing a console_script for a package from a wheel. ... ok test_continuation (test.test.TestBashGlobal.test_continuation) ... ok test_debug_output (test.test.TestBashGlobal.test_debug_output) ... ok test_double_quoted_completion (test.test.TestBashGlobal.test_double_quoted_completion) ... ok test_exclamation_in_double_quotes (test.test.TestBashGlobal.test_exclamation_in_double_quotes) ... expected failure test_nounset (test.test.TestBashGlobal.test_nounset) ... ok test_one_space_after_exact (test.test.TestBashGlobal.test_one_space_after_exact) Test exactly one space is appended after an exact match. ... ok test_parse_special_characters (test.test.TestBashGlobal.test_parse_special_characters) ... ok test_parse_special_characters_dollar (test.test.TestBashGlobal.test_parse_special_characters_dollar) ... expected failure test_partial_completion (test.test.TestBashGlobal.test_partial_completion) ... ok test_python_completion (test.test.TestBashGlobal.test_python_completion) ... ok test_python_filename_completion (test.test.TestBashGlobal.test_python_filename_completion) ... ok test_python_module (test.test.TestBashGlobal.test_python_module) Test completing a module run with python -m. ... ok test_python_not_executable (test.test.TestBashGlobal.test_python_not_executable) Test completing a script that cannot be run directly. ... ok test_python_stuck (test.test.TestBashGlobal.test_python_stuck) ... ok test_quoted_exact (test.test.TestBashGlobal.test_quoted_exact) ... ok test_quoted_space (test.test.TestBashGlobal.test_quoted_space) ... ok test_quotes (test.test.TestBashGlobal.test_quotes) ... ok test_redirection_completion (test.test.TestBashGlobal.test_redirection_completion) ... ok test_simple_completion (test.test.TestBashGlobal.test_simple_completion) ... ok test_single_quoted_completion (test.test.TestBashGlobal.test_single_quoted_completion) ... ok test_single_quotes_in_double_quotes (test.test.TestBashGlobal.test_single_quotes_in_double_quotes) ... ok test_single_quotes_in_single_quotes (test.test.TestBashGlobal.test_single_quotes_in_single_quotes) ... ok test_special_characters (test.test.TestBashGlobal.test_special_characters) ... ok test_special_characters_double_quoted (test.test.TestBashGlobal.test_special_characters_double_quoted) ... ok test_special_characters_single_quoted (test.test.TestBashGlobal.test_special_characters_single_quoted) ... ok test_temp_file (test.test.TestBashGlobal.test_temp_file) ... ok test_unquoted_space (test.test.TestBashGlobal.test_unquoted_space) ... ok test_wordbreak_chars (test.test.TestBashGlobal.test_wordbreak_chars) ... ok test_module (test.test.TestCheckModule.test_module) ... ok test_not_package (test.test.TestCheckModule.test_not_package) ... ok test_package (test.test.TestCheckModule.test_package) ... ok test_package_main (test.test.TestCheckModule.test_package_main) ... ok test_subpackage (test.test.TestCheckModule.test_subpackage) ... ok test_escaped_special (test.test.TestSplitLine.test_escaped_special) ... ok test_escaped_special_in_double_quotes (test.test.TestSplitLine.test_escaped_special_in_double_quotes) ... expected failure test_last_wordbreak_pos (test.test.TestSplitLine.test_last_wordbreak_pos) ... ok test_punctuation (test.test.TestSplitLine.test_punctuation) ... ok test_simple (test.test.TestSplitLine.test_simple) ... ok test_unescaped_special (test.test.TestSplitLine.test_unescaped_special) ... ok test_comp_point (test.test.TestZsh.test_comp_point) ... skipped 'skip' test_completion_environment (test.test.TestZsh.test_completion_environment) ... skipped 'skip' test_continuation (test.test.TestZsh.test_continuation) ... ok test_double_quoted_completion (test.test.TestZsh.test_double_quoted_completion) ... ok test_exclamation_in_double_quotes (test.test.TestZsh.test_exclamation_in_double_quotes) ... ok test_parse_special_characters (test.test.TestZsh.test_parse_special_characters) ... skipped 'skip' test_parse_special_characters_dollar (test.test.TestZsh.test_parse_special_characters_dollar) ... skipped 'skip' test_partial_completion (test.test.TestZsh.test_partial_completion) ... ok test_quoted_exact (test.test.TestZsh.test_quoted_exact) ... ok test_quoted_space (test.test.TestZsh.test_quoted_space) ... ok test_quotes (test.test.TestZsh.test_quotes) ... ok test_simple_completion (test.test.TestZsh.test_simple_completion) ... ok test_single_quoted_completion (test.test.TestZsh.test_single_quoted_completion) ... ok test_single_quotes_in_double_quotes (test.test.TestZsh.test_single_quotes_in_double_quotes) ... ok test_single_quotes_in_single_quotes (test.test.TestZsh.test_single_quotes_in_single_quotes) ... ok test_special_characters (test.test.TestZsh.test_special_characters) ... ok test_special_characters_double_quoted (test.test.TestZsh.test_special_characters_double_quoted) ... ok test_special_characters_single_quoted (test.test.TestZsh.test_special_characters_single_quoted) ... ok test_unquoted_space (test.test.TestZsh.test_unquoted_space) ... ok test_wordbreak_chars (test.test.TestZsh.test_wordbreak_chars) ... ok test_comp_point (test.test.TestZshGlobalExplicit.test_comp_point) ... skipped 'skip' test_completion_environment (test.test.TestZshGlobalExplicit.test_completion_environment) ... skipped 'skip' test_console_script_module (test.test.TestZshGlobalExplicit.test_console_script_module) Test completing a console_script for a module. ... ok test_console_script_module_wheel (test.test.TestZshGlobalExplicit.test_console_script_module_wheel) Test completing a console_script for a module from a wheel. ... ok test_console_script_package (test.test.TestZshGlobalExplicit.test_console_script_package) Test completing a console_script for a package. ... ok test_console_script_package_wheel (test.test.TestZshGlobalExplicit.test_console_script_package_wheel) Test completing a console_script for a package from a wheel. ... ok test_continuation (test.test.TestZshGlobalExplicit.test_continuation) ... ok test_double_quoted_completion (test.test.TestZshGlobalExplicit.test_double_quoted_completion) ... ok test_exclamation_in_double_quotes (test.test.TestZshGlobalExplicit.test_exclamation_in_double_quotes) ... ok test_parse_special_characters (test.test.TestZshGlobalExplicit.test_parse_special_characters) ... skipped 'skip' test_parse_special_characters_dollar (test.test.TestZshGlobalExplicit.test_parse_special_characters_dollar) ... skipped 'skip' test_partial_completion (test.test.TestZshGlobalExplicit.test_partial_completion) ... ok test_python_completion (test.test.TestZshGlobalExplicit.test_python_completion) ... ok test_python_filename_completion (test.test.TestZshGlobalExplicit.test_python_filename_completion) ... ok test_python_module (test.test.TestZshGlobalExplicit.test_python_module) Test completing a module run with python -m. ... ok test_python_not_executable (test.test.TestZshGlobalExplicit.test_python_not_executable) Test completing a script that cannot be run directly. ... ok test_python_stuck (test.test.TestZshGlobalExplicit.test_python_stuck) ... ok test_quoted_exact (test.test.TestZshGlobalExplicit.test_quoted_exact) ... ok test_quoted_space (test.test.TestZshGlobalExplicit.test_quoted_space) ... ok test_quotes (test.test.TestZshGlobalExplicit.test_quotes) ... ok test_redirection_completion (test.test.TestZshGlobalExplicit.test_redirection_completion) ... ok test_simple_completion (test.test.TestZshGlobalExplicit.test_simple_completion) ... ok test_single_quoted_completion (test.test.TestZshGlobalExplicit.test_single_quoted_completion) ... ok test_single_quotes_in_double_quotes (test.test.TestZshGlobalExplicit.test_single_quotes_in_double_quotes) ... ok test_single_quotes_in_single_quotes (test.test.TestZshGlobalExplicit.test_single_quotes_in_single_quotes) ... ok test_special_characters (test.test.TestZshGlobalExplicit.test_special_characters) ... ok test_special_characters_double_quoted (test.test.TestZshGlobalExplicit.test_special_characters_double_quoted) ... ok test_special_characters_single_quoted (test.test.TestZshGlobalExplicit.test_special_characters_single_quoted) ... ok test_unquoted_space (test.test.TestZshGlobalExplicit.test_unquoted_space) ... ok test_wordbreak_chars (test.test.TestZshGlobalExplicit.test_wordbreak_chars) ... ok test_comp_point (test.test.TestZshGlobalImplicit.test_comp_point) ... skipped 'skip' test_completion_environment (test.test.TestZshGlobalImplicit.test_completion_environment) ... skipped 'skip' test_console_script_module (test.test.TestZshGlobalImplicit.test_console_script_module) Test completing a console_script for a module. ... ok test_console_script_module_wheel (test.test.TestZshGlobalImplicit.test_console_script_module_wheel) Test completing a console_script for a module from a wheel. ... ok test_console_script_package (test.test.TestZshGlobalImplicit.test_console_script_package) Test completing a console_script for a package. ... ok test_console_script_package_wheel (test.test.TestZshGlobalImplicit.test_console_script_package_wheel) Test completing a console_script for a package from a wheel. ... ok test_continuation (test.test.TestZshGlobalImplicit.test_continuation) ... ok test_double_quoted_completion (test.test.TestZshGlobalImplicit.test_double_quoted_completion) ... ok test_exclamation_in_double_quotes (test.test.TestZshGlobalImplicit.test_exclamation_in_double_quotes) ... ok test_parse_special_characters (test.test.TestZshGlobalImplicit.test_parse_special_characters) ... skipped 'skip' test_parse_special_characters_dollar (test.test.TestZshGlobalImplicit.test_parse_special_characters_dollar) ... skipped 'skip' test_partial_completion (test.test.TestZshGlobalImplicit.test_partial_completion) ... ok test_python_completion (test.test.TestZshGlobalImplicit.test_python_completion) ... ok test_python_filename_completion (test.test.TestZshGlobalImplicit.test_python_filename_completion) ... ok test_python_module (test.test.TestZshGlobalImplicit.test_python_module) Test completing a module run with python -m. ... ok test_python_not_executable (test.test.TestZshGlobalImplicit.test_python_not_executable) Test completing a script that cannot be run directly. ... ok test_python_stuck (test.test.TestZshGlobalImplicit.test_python_stuck) ... ok test_quoted_exact (test.test.TestZshGlobalImplicit.test_quoted_exact) ... ok test_quoted_space (test.test.TestZshGlobalImplicit.test_quoted_space) ... ok test_quotes (test.test.TestZshGlobalImplicit.test_quotes) ... ok test_redirection_completion (test.test.TestZshGlobalImplicit.test_redirection_completion) ... ok test_simple_completion (test.test.TestZshGlobalImplicit.test_simple_completion) ... ok test_single_quoted_completion (test.test.TestZshGlobalImplicit.test_single_quoted_completion) ... ok test_single_quotes_in_double_quotes (test.test.TestZshGlobalImplicit.test_single_quotes_in_double_quotes) ... ok test_single_quotes_in_single_quotes (test.test.TestZshGlobalImplicit.test_single_quotes_in_single_quotes) ... ok test_special_characters (test.test.TestZshGlobalImplicit.test_special_characters) ... ok test_special_characters_double_quoted (test.test.TestZshGlobalImplicit.test_special_characters_double_quoted) ... ok test_special_characters_single_quoted (test.test.TestZshGlobalImplicit.test_special_characters_single_quoted) ... ok test_unquoted_space (test.test.TestZshGlobalImplicit.test_unquoted_space) ... ok test_wordbreak_chars (test.test.TestZshGlobalImplicit.test_wordbreak_chars) ... ok test_warn (test.test.Warn.test_warn) ... ok test_comp_point (test.test_contrib_shells.TestFish.test_comp_point) ... skipped 'fish is not supported. Enable this test manually if needed.' test_completion_environment (test.test_contrib_shells.TestFish.test_completion_environment) ... skipped 'fish is not supported. Enable this test manually if needed.' test_continuation (test.test_contrib_shells.TestFish.test_continuation) ... skipped 'fish is not supported. Enable this test manually if needed.' test_double_quoted_completion (test.test_contrib_shells.TestFish.test_double_quoted_completion) ... skipped 'fish is not supported. Enable this test manually if needed.' test_exclamation_in_double_quotes (test.test_contrib_shells.TestFish.test_exclamation_in_double_quotes) ... skipped 'fish is not supported. Enable this test manually if needed.' test_parse_special_characters (test.test_contrib_shells.TestFish.test_parse_special_characters) ... skipped 'fish is not supported. Enable this test manually if needed.' test_parse_special_characters_dollar (test.test_contrib_shells.TestFish.test_parse_special_characters_dollar) ... skipped 'fish is not supported. Enable this test manually if needed.' test_partial_completion (test.test_contrib_shells.TestFish.test_partial_completion) ... skipped 'fish is not supported. Enable this test manually if needed.' test_quoted_exact (test.test_contrib_shells.TestFish.test_quoted_exact) ... skipped 'fish is not supported. Enable this test manually if needed.' test_quoted_space (test.test_contrib_shells.TestFish.test_quoted_space) ... skipped 'fish is not supported. Enable this test manually if needed.' test_quotes (test.test_contrib_shells.TestFish.test_quotes) ... skipped 'fish is not supported. Enable this test manually if needed.' test_simple_completion (test.test_contrib_shells.TestFish.test_simple_completion) ... skipped 'fish is not supported. Enable this test manually if needed.' test_single_quoted_completion (test.test_contrib_shells.TestFish.test_single_quoted_completion) ... skipped 'fish is not supported. Enable this test manually if needed.' test_single_quotes_in_double_quotes (test.test_contrib_shells.TestFish.test_single_quotes_in_double_quotes) ... skipped 'fish is not supported. Enable this test manually if needed.' test_single_quotes_in_single_quotes (test.test_contrib_shells.TestFish.test_single_quotes_in_single_quotes) ... skipped 'fish is not supported. Enable this test manually if needed.' test_special_characters (test.test_contrib_shells.TestFish.test_special_characters) ... skipped 'fish is not supported. Enable this test manually if needed.' test_special_characters_double_quoted (test.test_contrib_shells.TestFish.test_special_characters_double_quoted) ... skipped 'fish is not supported. Enable this test manually if needed.' test_special_characters_single_quoted (test.test_contrib_shells.TestFish.test_special_characters_single_quoted) ... skipped 'fish is not supported. Enable this test manually if needed.' test_unquoted_space (test.test_contrib_shells.TestFish.test_unquoted_space) ... skipped 'fish is not supported. Enable this test manually if needed.' test_wordbreak_chars (test.test_contrib_shells.TestFish.test_wordbreak_chars) ... skipped 'fish is not supported. Enable this test manually if needed.' test_comp_point (test.test_contrib_shells.TestTcsh.test_comp_point) ... skipped 'tcsh is not supported. Enable this test manually if needed.' test_completion_environment (test.test_contrib_shells.TestTcsh.test_completion_environment) ... skipped 'tcsh is not supported. Enable this test manually if needed.' test_continuation (test.test_contrib_shells.TestTcsh.test_continuation) ... skipped 'tcsh is not supported. Enable this test manually if needed.' test_double_quoted_completion (test.test_contrib_shells.TestTcsh.test_double_quoted_completion) ... skipped 'tcsh is not supported. Enable this test manually if needed.' test_exclamation_in_double_quotes (test.test_contrib_shells.TestTcsh.test_exclamation_in_double_quotes) ... skipped 'tcsh is not supported. Enable this test manually if needed.' test_parse_special_characters (test.test_contrib_shells.TestTcsh.test_parse_special_characters) ... skipped 'tcsh is not supported. Enable this test manually if needed.' test_parse_special_characters_dollar (test.test_contrib_shells.TestTcsh.test_parse_special_characters_dollar) ... skipped 'tcsh is not supported. Enable this test manually if needed.' test_partial_completion (test.test_contrib_shells.TestTcsh.test_partial_completion) ... skipped 'tcsh is not supported. Enable this test manually if needed.' test_quoted_exact (test.test_contrib_shells.TestTcsh.test_quoted_exact) ... skipped 'tcsh is not supported. Enable this test manually if needed.' test_quoted_space (test.test_contrib_shells.TestTcsh.test_quoted_space) ... skipped 'tcsh is not supported. Enable this test manually if needed.' test_quotes (test.test_contrib_shells.TestTcsh.test_quotes) ... skipped 'tcsh is not supported. Enable this test manually if needed.' test_simple_completion (test.test_contrib_shells.TestTcsh.test_simple_completion) ... skipped 'tcsh is not supported. Enable this test manually if needed.' test_single_quoted_completion (test.test_contrib_shells.TestTcsh.test_single_quoted_completion) ... skipped 'tcsh is not supported. Enable this test manually if needed.' test_single_quotes_in_double_quotes (test.test_contrib_shells.TestTcsh.test_single_quotes_in_double_quotes) ... skipped 'tcsh is not supported. Enable this test manually if needed.' test_single_quotes_in_single_quotes (test.test_contrib_shells.TestTcsh.test_single_quotes_in_single_quotes) ... skipped 'tcsh is not supported. Enable this test manually if needed.' test_special_characters (test.test_contrib_shells.TestTcsh.test_special_characters) ... skipped 'tcsh is not supported. Enable this test manually if needed.' test_special_characters_double_quoted (test.test_contrib_shells.TestTcsh.test_special_characters_double_quoted) ... skipped 'tcsh is not supported. Enable this test manually if needed.' test_special_characters_single_quoted (test.test_contrib_shells.TestTcsh.test_special_characters_single_quoted) ... skipped 'tcsh is not supported. Enable this test manually if needed.' test_unquoted_space (test.test_contrib_shells.TestTcsh.test_unquoted_space) ... skipped 'tcsh is not supported. Enable this test manually if needed.' test_wordbreak_chars (test.test_contrib_shells.TestTcsh.test_wordbreak_chars) ... skipped 'tcsh is not supported. Enable this test manually if needed.' ---------------------------------------------------------------------- Ran 229 tests OK (skipped=52, expected failures=5)