Skip to content

Commit

Permalink
tests: do not exclude pipewire tests on Whonix 17
Browse files Browse the repository at this point in the history
Whonix 17 is not Debian 11
  • Loading branch information
marmarek committed Jun 15, 2024
1 parent a044cf5 commit 9817c5c
Showing 1 changed file with 2 additions and 1 deletion.
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

0 comments on commit 9817c5c

Please sign in to comment.