Skip to content

Commit

Permalink
Fix option all_nano
Browse files Browse the repository at this point in the history
  • Loading branch information
fbeutin-ledger committed Jul 19, 2023
1 parent 4189aee commit 0e776dd
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.11.1] - 2023-07-19

### Fixed:
- base conftest : hotfix option "all_nano"

## [1.11.0] - 2023-07-19

### Added:
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 @@ -93,7 +93,7 @@ def pytest_generate_tests(metafunc):

# Enable firmware for requested devices
for fw in FIRMWARES:
if device == fw.name or device == "all" or (device == "all_nano" and fw.name.is_nano()):
if device == fw.name or device == "all" or (device == "all_nano" and fw.is_nano):
fw_list.append(fw)
ids.append(fw.name)

Expand Down

0 comments on commit 0e776dd

Please sign in to comment.