Skip to content

Commit

Permalink
Fix data_model mapped volume
Browse files Browse the repository at this point in the history
  • Loading branch information
rquidute committed Sep 18, 2024
1 parent 5d454ab commit 9c1ef58
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .version_information
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v2.11-beta3+fall2024
v2.11-beta3.1+fall2024
9 changes: 9 additions & 0 deletions test_collections/matter/sdk_tests/support/sdk_container.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,11 @@
)
DOCKER_PYTHON_TESTING_PATH = "/root/python_testing"

MAPPED_DATA_MODEL_VOLUME = "mapped_data_model_volume"
DOCKER_DATA_MODEL_PATH = DOCKER_PYTHON_TESTING_PATH + "/data_model"



# RPC Client Running on SDK Container

Check failure on line 60 in test_collections/matter/sdk_tests/support/sdk_container.py

View workflow job for this annotation

GitHub Actions / Flake8

test_collections/matter/sdk_tests/support/sdk_container.py#L60

Too many blank lines (3) (E303)
LOCAL_RPC_PYTHON_TESTING_PATH = Path(
LOCAL_TEST_COLLECTIONS_PATH + "/sdk_tests/support/python_testing/models/rpc_client/"
Expand Down Expand Up @@ -108,6 +113,10 @@ class SDKContainer(metaclass=Singleton):
"bind": DOCKER_PYTHON_TESTING_PATH,
"mode": "rw",
},
MAPPED_DATA_MODEL_VOLUME: {
"bind": DOCKER_DATA_MODEL_PATH,
"mode": "rw",
},
LOCAL_RPC_PYTHON_TESTING_PATH: {
"bind": DOCKER_RPC_PYTHON_TESTING_PATH,
"mode": "rw",
Expand Down

0 comments on commit 9c1ef58

Please sign in to comment.