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

tests: do not exclude pipewire tests on Whonix 17 #600

Merged
merged 1 commit into from
Jun 17, 2024
Merged
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
3 changes: 2 additions & 1 deletion qubes/tests/integ/vm_qrexec_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,8 @@ def prepare_audio_test(self, backend):
if backend == 'pipewire':
if not self.testvm1.features.check_with_template('supported-service.pipewire', False):
self.skipTest('PipeWire not supported in VM')
if 'debian-11' in self.template or 'whonix' in self.template:
if 'debian-11' in self.template or (
'whonix' in self.template and '16' in self.template):
self.skipTest('PipeWire audio not supported in Debian 11')
self.testvm1.features['service.pipewire'] = True
elif backend == 'pulseaudio':
Expand Down