From bc241e850fa1d2ceeb76acd9bac8733868392baa Mon Sep 17 00:00:00 2001 From: Scott Murray Date: Wed, 9 Sep 2020 18:21:18 -0400 Subject: Remove hwrequired marking of audiomixer tests Since CI runs qemu with a soundcard enabled, and it is easy to do so with runqemu with the "audio" option, remove the "hwrequired" markers on the audiomixer tests that have them. Bug-AGL: SPEC-3572 Signed-off-by: Scott Murray Change-Id: I290845e802168116f4769dd011c84875d2e4b5ac --- pyagl/tests/test_audiomixer.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/pyagl/tests/test_audiomixer.py b/pyagl/tests/test_audiomixer.py index 6895fe3..000d9e9 100644 --- a/pyagl/tests/test_audiomixer.py +++ b/pyagl/tests/test_audiomixer.py @@ -50,7 +50,6 @@ async def test_list_controls(event_loop, service: AMS): assert resp.status == 'success' -@pytest.mark.hwrequired @pytest.mark.audiomixer async def test_volume_verb(event_loop, service: AMS): msgid = await service.volume() @@ -60,7 +59,6 @@ async def test_volume_verb(event_loop, service: AMS): assert resp.status == 'success' -@pytest.mark.hwrequired @pytest.mark.audiomixer async def test_set_volume0(event_loop, service: AMS): msgid = await service.volume(value=0) @@ -70,7 +68,6 @@ async def test_set_volume0(event_loop, service: AMS): assert resp.status == 'success' -@pytest.mark.hwrequired @pytest.mark.audiomixer async def test_set_maxvolume(event_loop, service: AMS): msgid = await service.volume(value=1) @@ -80,7 +77,6 @@ async def test_set_maxvolume(event_loop, service: AMS): assert resp.status == 'success' -@pytest.mark.hwrequired @pytest.mark.audiomixer async def test_get_mute(event_loop, service: AMS): msgid = await service.mute() @@ -90,7 +86,6 @@ async def test_get_mute(event_loop, service: AMS): assert resp.status == 'success' -@pytest.mark.hwrequired @pytest.mark.audiomixer async def test_set_mute(event_loop, service: AMS): msgid = await service.mute(value=1) @@ -100,7 +95,6 @@ async def test_set_mute(event_loop, service: AMS): assert resp.status == 'success' -@pytest.mark.hwrequired @pytest.mark.audiomixer async def test_set_unmute(event_loop, service: AMS): msgid = await service.mute(value=0) -- cgit 1.2.3-korg