aboutsummaryrefslogtreecommitdiffstats
path: root/pyagl/tests/test_audiomixer.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyagl/tests/test_audiomixer.py')
-rw-r--r--pyagl/tests/test_audiomixer.py9
1 files changed, 1 insertions, 8 deletions
diff --git a/pyagl/tests/test_audiomixer.py b/pyagl/tests/test_audiomixer.py
index 640c6cb..5479521 100644
--- a/pyagl/tests/test_audiomixer.py
+++ b/pyagl/tests/test_audiomixer.py
@@ -6,7 +6,7 @@ from pyagl.services.base import AFBResponse, AFBT
from pyagl.services.audiomixer import AudioMixerService as AMS
import logging
-pytestmark = pytest.mark.asyncio
+pytestmark = [pytest.mark.asyncio, pytest.mark.audiomixer]
@pytest.fixture(scope='module')
@@ -26,7 +26,6 @@ async def service():
@pytest.mark.regular
-@pytest.mark.audiomixer
async def test_list_controls(event_loop, service: AMS):
msgid = await service.list_controls()
resp = await service.afbresponse()
@@ -36,7 +35,6 @@ async def test_list_controls(event_loop, service: AMS):
@pytest.mark.regular
-@pytest.mark.audiomixer
async def test_volume_verb(event_loop, service: AMS):
msgid = await service.volume()
resp = await service.afbresponse()
@@ -46,7 +44,6 @@ async def test_volume_verb(event_loop, service: AMS):
@pytest.mark.regular
-@pytest.mark.audiomixer
async def test_set_volume0(event_loop, service: AMS):
msgid = await service.volume(value=0)
resp = await service.afbresponse()
@@ -56,7 +53,6 @@ async def test_set_volume0(event_loop, service: AMS):
@pytest.mark.regular
-@pytest.mark.audiomixer
async def test_set_maxvolume(event_loop, service: AMS):
msgid = await service.volume(value=1)
resp = await service.afbresponse()
@@ -66,7 +62,6 @@ async def test_set_maxvolume(event_loop, service: AMS):
@pytest.mark.regular
-@pytest.mark.audiomixer
async def test_get_mute(event_loop, service: AMS):
msgid = await service.mute()
resp = await service.afbresponse()
@@ -76,7 +71,6 @@ async def test_get_mute(event_loop, service: AMS):
@pytest.mark.regular
-@pytest.mark.audiomixer
async def test_set_mute(event_loop, service: AMS):
msgid = await service.mute(value=1)
resp = await service.afbresponse()
@@ -86,7 +80,6 @@ async def test_set_mute(event_loop, service: AMS):
@pytest.mark.regular
-@pytest.mark.audiomixer
async def test_set_unmute(event_loop, service: AMS):
msgid = await service.mute(value=0)
resp = await service.afbresponse()