-
Notifications
You must be signed in to change notification settings - Fork 41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged PR#97 with tests #100
Conversation
deleted: tests/test_basic.py deleted: tests/test_completion/test_common_tests/test_arg_completion.py deleted: tests/test_completion/test_common_tests/test_option_completion.py
Replaced version based _resolve_context with custom function: click_repl/_completer.py Added InvalidGroupFormat Exception Class: click_repl/exceptions.py Added custom _resolve_context function: click_repl/utils.py
Added mock_stdin: tests/__init__.py Added tests for group with options and args: tests/test_repl.py
Added ctx to completer: tests/test_command_collection.py Added ctx to completer: tests/test_completion/test_click_version_ge_8/test_arg_completion_v8.py Added ctx to completer: tests/test_completion/test_click_version_ge_8/test_option_completion_v8.py Added ctx to completer: tests/test_completion/test_click_version_le_7/test_arg_completion_v7.py Added ctx to completer: tests/test_completion/test_click_version_le_7/test_option_completion_v7.py Added ctx to completer: tests/test_completion/test_common_tests/test_hidden_cmd_and_args.py Renamed: tests/test_completion/test_path_type/test_path_type.py -> tests/test_completion/test_path_type.py
If u r merging this PR, you can close this PR |
I want to merge that PR first, can you rebase after that? |
basepython = python3.7 | ||
deps = flake8 | ||
commands = flake8 click_repl tests | ||
[testenv:click6] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why this is added?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems like this module should support click v6, as there's an implementation of ClickExit Exception in the exceptions file
So, I've added click v6 tests as well
@auvipy Sure, You can merge that PR first |
you don't have to close you can re base I think |
@auvipy ok, you can proceed |
can you please come with the relevant part to fix #92 first |
@auvipy I'll just close this branch, and come up with a new one |
Merged #97 with some tests, and some other quality edits
Resolves #92