We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9951a92 commit 3b74d87Copy full SHA for 3b74d87
2 files changed
.gitignore
@@ -9,6 +9,7 @@ __pycache__/
9
*$py.class
10
*.egg-info/
11
12
+*.coverage
13
/.coverage
14
/.coverage.*
15
/.cache
packages/aws-durable-execution-sdk-python-otel/tests/test_init.py
@@ -0,0 +1,18 @@
1
+"""Tests for aws_durable_execution_sdk_python_otel package."""
2
+
3
+from aws_durable_execution_sdk_python_otel import __version__
4
5
6
+def test_version_is_set():
7
+ """Verify the package version is defined."""
8
+ assert __version__ is not None
+ assert isinstance(__version__, str)
+ assert len(__version__) > 0
+def test_version_format():
+ """Verify the package version follows semver format."""
+ parts = __version__.split(".")
16
+ assert len(parts) == 3
17
+ for part in parts:
18
+ assert part.isdigit()
0 commit comments