Skip to content

Commit

Permalink
Merge pull request #123 from LedgerHQ/move_snapshots
Browse files Browse the repository at this point in the history
tests: move snapshots folder
  • Loading branch information
sgliner-ledger authored Jan 10, 2024
2 parents bd1f9da + e50e68c commit ec63f7b
Show file tree
Hide file tree
Showing 127 changed files with 9 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/build_and_functional_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,3 @@ jobs:
uses: LedgerHQ/ledger-app-workflows/.github/workflows/reusable_ragger_tests.yml@v1
with:
download_app_binaries_artifact: "compiled_app_binaries"
test_dir: tests
7 changes: 7 additions & 0 deletions ledger_app.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[app]
build_directory = "./"
sdk = "C"
devices = ["nanos", "nanox", "nanos+", "stax"]

[tests]
pytest_directory = "./tests/"
2 changes: 1 addition & 1 deletion tests/monero_client/monero_cmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
from ragger.navigator import NavInsID, NavIns

PROTOCOL_VERSION: int = 3
TESTS_ROOT_DIR = Path(__file__).parent
TESTS_ROOT_DIR = Path(__file__).parent.parent


class MoneroCmd(MoneroCryptoCmd):
Expand Down
2 changes: 1 addition & 1 deletion tests/monero_client/monero_crypto_cmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from .utils.utils import get_nano_review_instructions

PROTOCOL_VERSION: int = 3
TESTS_ROOT_DIR = Path(__file__).parent
TESTS_ROOT_DIR = Path(__file__).parent.parent


class MoneroCryptoCmd:
Expand Down

0 comments on commit ec63f7b

Please sign in to comment.