Skip to content

Commit

Permalink
Merge pull request #191 from LedgerHQ/fbe/fix_all_device_conftest_option
Browse files Browse the repository at this point in the history
[conftest] Fixed '--device all' conftest option
  • Loading branch information
fbeutin-ledger authored Jul 2, 2024
2 parents 9125126 + 7a600c0 commit cc92606
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.20.2] - 2024-07-02

### Fixed
- conftest: Fixed '--device all' conftest option

## [1.20.1] - 2024-06-19

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion src/ragger/conftest/base_conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def pytest_generate_tests(metafunc):

def prepare_speculos_args(root_pytest_dir: Path, firmware: Firmware, display: bool,
cli_user_seed: str, additional_args: List[str]):
speculos_args = additional_args
speculos_args = additional_args.copy()

if display:
speculos_args += ["--display", "qt"]
Expand Down

0 comments on commit cc92606

Please sign in to comment.