diff --git a/pyproject.toml b/pyproject.toml index b8efea7..57224c0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "chemscii" -version = "0.1.0" +version = "0.1.1" description = "Render chemical structures as ASCII/Unicode art" authors = ["Benjamin J. Shields"] readme = "README.md" diff --git a/tests/test_cli.py b/tests/test_cli.py index 9bb7687..fab3ed3 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -197,12 +197,6 @@ def test_invalid_input_error(self) -> None: assert result.exit_code == 1 assert "Could not parse" in result.stdout - def test_version_flag(self) -> None: - """Test version flag.""" - result = runner.invoke(app, ["--version"]) - assert result.exit_code == 0 - assert "0.1.0" in result.stdout - def test_help_flag(self) -> None: """Test help flag.""" result = runner.invoke(app, ["--help"])