We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5aaca6 commit 30e29a5Copy full SHA for 30e29a5
devolv/__init__.py
@@ -1,2 +1,2 @@
1
-__version__ = "0.2.2"
+__version__ = "0.2.3"
2
tests/test_cli.py
@@ -5,6 +5,7 @@
5
import os
6
import pytest
7
from devolv.iam.validator.core import validate_policy_file
8
+from devolv import __version__
9
10
runner = CliRunner()
11
@@ -89,7 +90,7 @@ def test_cli_root_help():
89
90
def test_cli_version():
91
result = runner.invoke(app, ["--version"])
92
assert result.exit_code == 0
- assert "0.1." in result.output # Adjust if dynamic version
93
+ assert __version__ in result.output # Adjust if dynamic version
94
95
def test_cli_unsupported_path(tmp_path):
96
# Just pass a bogus path string that isn't a file or directory
0 commit comments