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

Use Fedora 35 for recommended development environment #442

Merged
merged 2 commits into from
Feb 1, 2022
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 .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
- dependencies: yamllint
task: yamllint
runs-on: ubuntu-latest
container: fedora:34 # CURRENT DEVELOPMENT ENVIRONMENT
container: fedora:35 # CURRENT DEVELOPMENT ENVIRONMENT
steps:
- uses: actions/checkout@v2
- name: Install dependencies
Expand Down
13 changes: 0 additions & 13 deletions tests/test_enumerate.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,19 +102,6 @@ def test_match_subsystem(self, context, subsystem):
lambda d: d.subsystem == subsystem,
)

@failed_health_check_wrapper
@given(_CONTEXT_STRATEGY, _SUBSYSTEM_STRATEGY)
@settings(max_examples=1)
def test_match_subsystem_nomatch(self, context, subsystem):
"""
Subsystem no match gets no subsystem with subsystem.
"""
_test_direct_and_complement(
context,
frozenset(context.list_devices().match_subsystem(subsystem, nomatch=True)),
lambda d: d.subsystem != subsystem,
)

@failed_health_check_wrapper
@given(_CONTEXT_STRATEGY, _SUBSYSTEM_STRATEGY)
@settings(max_examples=5)
Expand Down