Skip to content

Commit 3cff99c

Browse files
committed
v2.1.3
-------- 2023-07-21: - require minimum python 3.8 - remove python 3.7 tests - introduce PEP517 packaging standard - introduce pyproject.toml build-system - remove mypy.ini - remove pytest.ini - remove setup.cfg - remove setup.py - remove .bettercodehub.yml - remove .travis.yml - update black config - clean ./tests/test_cli.py - add codeql badge - move 3rd_party_stubs outside the src directory to ``./.3rd_party_stubs`` - add pypy 3.10 tests - add python 3.12-dev tests
1 parent cbb5bc6 commit 3cff99c

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

tests/test_cli.py

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,8 @@ def call_cli_command(commandline_args: str = "") -> bool:
2121

2222

2323
def test_cli_commands() -> None:
24-
# due to a bug in python 3.8.1 with setup.py test on travis we need to cancel the click tests there !
25-
if sys.version_info < (3, 8, 1) or sys.version_info >= (3, 8, 2):
26-
assert not call_cli_command("--unknown_option")
27-
assert call_cli_command("--version")
28-
assert call_cli_command("-h")
29-
assert call_cli_command("info")
30-
assert call_cli_command("--traceback info")
24+
assert not call_cli_command("--unknown_option")
25+
assert call_cli_command("--version")
26+
assert call_cli_command("-h")
27+
assert call_cli_command("info")
28+
assert call_cli_command("--traceback info")

0 commit comments

Comments
 (0)