Blob Blame History Raw
diff --git i/autobahn/asyncio/test/test_asyncio_rawsocket.py w/autobahn/asyncio/test/test_asyncio_rawsocket.py
index 9373721..1cde465 100644
--- i/autobahn/asyncio/test/test_asyncio_rawsocket.py
+++ w/autobahn/asyncio/test/test_asyncio_rawsocket.py
@@ -1,9 +1,6 @@
 import pytest
 import os
 
-if not os.environ.get('USE_ASYNCIO', False):
-    raise pytest.skip("Only for asyncio")
-
 from unittest import TestCase, main
 try:
     from unittest.mock import Mock, call
@@ -15,6 +12,7 @@ from autobahn.asyncio.util import get_serializers
 from autobahn.wamp import message
 
 
+@pytest.mark.skipif(os.environ.get('USE_ASYNCIO', False), reason="Only for asyncio")
 class Test(TestCase):
 
     def test_sers(self):
diff --git i/setup.cfg w/setup.cfg
index 0e7cad4..11c0cff 100644
--- i/setup.cfg
+++ w/setup.cfg
@@ -1,4 +1,4 @@
-[pytest]
+[tool:pytest]
 norecursedirs = autobahn/twisted/*
 
 [bdist_wheel]