Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix (hierarchical templates): use proper uri #53

Merged
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion ncs/app_envelope.yaml.jinja2
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ SUIT_Envelope_Tagged:
- suit-send-record-failure
suit-install:
- suit-directive-override-parameters:
suit-parameter-uri: '#{{ app['binary'] }}'
suit-parameter-uri: '#{{ app['name'] }}'
- suit-directive-fetch:
- suit-send-record-failure
- suit-condition-image-match:
Expand Down
2 changes: 1 addition & 1 deletion ncs/rad_envelope.yaml.jinja2
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ SUIT_Envelope_Tagged:
- suit-send-record-failure
suit-install:
- suit-directive-override-parameters:
suit-parameter-uri: '#{{ hci_rpmsg_subimage['binary'] }}'
suit-parameter-uri: '#{{ hci_rpmsg_subimage['name'] }}'
- suit-directive-fetch:
- suit-send-record-failure
- suit-condition-image-match:
Expand Down
2 changes: 1 addition & 1 deletion tests/requirements-test.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pytest
pytest-mock
pytest-cov
coverage
coverage>=6.3
deepdiff
intelhex
2 changes: 1 addition & 1 deletion tests/test_ncs_sign_script.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import sys
import uuid

from mock import patch
from unittest.mock import patch

from cryptography.hazmat.primitives.serialization import load_pem_private_key
from cryptography.hazmat.primitives import hashes
Expand Down
Loading