Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,10 @@ src/hiero_sdk_python/hapi
# Pytest
.pytest_cache

# Hypothesis state
.hypothesis/

# Lock files
uv.lock
pdm.lock
pubkey.asc
pubkey.asc
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ This changelog is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.
### Tests
- Format `tests/unit/endpoint_test.py` using black. (`#1792`)
- Implement TCK JSON-RPC server with request handling and error management
- Implemented basic fuzz testing [#1872](https://github.com/hiero-ledger/hiero-sdk-python/issues/1872)

### .github
- Added triage members max assignment is protected from being a mentor in `.github/scripts/bot-assignment-check.sh`. (#1718)
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ dev = [
"grpcio-tools>=1.76.0,<2",
"pytest>=8.3.4,<9",
"pytest-cov>=7.0.0,<8",
"hypothesis>=6.0"
Comment thread
exploreriii marked this conversation as resolved.
Outdated
]

lint = [
Expand Down
3 changes: 2 additions & 1 deletion pytest.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ pythonpath = src

markers =
integration: mark a test as an integration test.
unit: mark a test as a unit test.
unit: mark a test as a unit test.
fuzz: mark a test as fuzz test.
1 change: 1 addition & 0 deletions tests/fuzz/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# with <3 from Anto
Comment thread
AntonioCeppellini marked this conversation as resolved.
Loading
Loading