Skip to content

Commit d72f9d6

Browse files
author
aman
committed
Adapt unit test
1 parent 2fe8b03 commit d72f9d6

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,16 @@ import bodyloop
2929
from bodyloop import Viatar, Proband
3030
from bodyloop import System as BodyLoopSystem
3131
```
32+
33+
## Contribute
34+
35+
Local workflow
36+
37+
```bash
38+
git clone git@github.com:BodyLoop/bodyloop-sdk-python.git
39+
cd bodyloop-sdk-python
40+
41+
uv sync
42+
uv run pytest
43+
uv build
44+
```

tests/test_bodyloop_sdk.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ def test_version_exists():
1212
def test_version_format():
1313
"""__version__ follows semver major.minor.patch format."""
1414
parts = bodyloop_sdk.__version__.split(".")
15-
assert len(parts) == 3
15+
assert len(parts) == 4
1616
assert all(part.isdigit() for part in parts)

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)