aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScott Murray <scott.murray@konsulko.com>2020-09-09 18:21:18 -0400
committerScott Murray <scott.murray@konsulko.com>2020-09-10 10:27:46 -0400
commitbc241e850fa1d2ceeb76acd9bac8733868392baa (patch)
treed05e7a50c94ffebe549286737b845b6f4d813b31
parent6cffabd9cf2f0e5b1528c5e3e55558e3d8aab201 (diff)
Remove hwrequired marking of audiomixer testsjellyfish_9.99.4jellyfish/9.99.49.99.4
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 <scott.murray@konsulko.com> Change-Id: I290845e802168116f4769dd011c84875d2e4b5ac
-rw-r--r--pyagl/tests/test_audiomixer.py6
1 files changed, 0 insertions, 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)