diff --git a/tests/test_cli.py b/tests/test_cli.py index da3d0a4..1eae03c 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -21,10 +21,8 @@ def call_cli_command(commandline_args: str = "") -> bool: def test_cli_commands() -> None: - # due to a bug in python 3.8.1 with setup.py test on travis we need to cancel the click tests there ! - if sys.version_info < (3, 8, 1) or sys.version_info >= (3, 8, 2): - assert not call_cli_command("--unknown_option") - assert call_cli_command("--version") - assert call_cli_command("-h") - assert call_cli_command("info") - assert call_cli_command("--traceback info") + assert not call_cli_command("--unknown_option") + assert call_cli_command("--version") + assert call_cli_command("-h") + assert call_cli_command("info") + assert call_cli_command("--traceback info")