Skip to content

Commit 41c2e11

Browse files
committedMay 23, 2024·
misc: Fix client test workflow.
Signed-off-by: iabdalkader <[email protected]>
1 parent 8d80b5c commit 41c2e11

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed
 

‎.github/workflows/client-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
branches:
66
- 'main'
77
paths:
8-
- '*.py'
8+
- '**.py'
99
- '.github/workflows/*.yml'
1010
- '.github/workflows/*.json'
1111
- '!**/README.md'
@@ -19,7 +19,7 @@ on:
1919
branches:
2020
- 'main'
2121
paths:
22-
- '*.py'
22+
- '**.py'
2323
- '.github/workflows/*.yml'
2424
- '.github/workflows/*.json'
2525
- '!**/README.md'

‎tests/ci.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ def on_value_changed(client, value):
7474
device_id=os.getenv("DEVICE_ID"),
7575
ssl_params={
7676
"pin": "1234",
77+
"use_hsm": True,
7778
"keyfile": "pkcs11:token=arduino",
7879
"certfile": "pkcs11:token=arduino",
7980
"ca_certs": "ca-root.pem",

0 commit comments

Comments
 (0)
Please sign in to comment.