From: 
Subject: Debian changes

The Debian packaging of amqtt is maintained in git, using a workflow
similar to the one described in dgit-maint-merge(7).
The Debian delta is represented by this one combined patch; there isn't a
patch queue that can be represented as a quilt series.

A detailed breakdown of the changes is available from their canonical
representation -- git commits in the packaging repository.
For example, to see the changes made by the Debian maintainer in the first
upload of upstream version 1.2.3, you could use:

    % git clone https://git.dgit.debian.org/amqtt
    % cd amqtt
    % git log --oneline 1.2.3..debian/1.2.3-1 -- . ':!debian'

(If you have dgit, use `dgit clone amqtt`, rather than plain `git clone`.)

We don't use debian/source/options single-debian-patch because it has bugs.
Therefore, NMUs etc. may nevertheless have made additional patches.

---

diff --git a/tests/contrib/test_db_plugin.py b/tests/contrib/test_db_plugin.py
index c9be4a8..495218b 100644
--- a/tests/contrib/test_db_plugin.py
+++ b/tests/contrib/test_db_plugin.py
@@ -40,7 +40,6 @@ def db_connection(db_file):
 
 
 @pytest.fixture
-@pytest.mark.asyncio
 async def user_manager(password_hasher, db_connection):
     um = UserManager(db_connection)
     await um.db_sync()
@@ -48,7 +47,6 @@ async def user_manager(password_hasher, db_connection):
 
 
 @pytest.fixture
-@pytest.mark.asyncio
 async def topic_manager(password_hasher, db_connection):
     tm = TopicManager(db_connection)
     await tm.db_sync()
diff --git a/tests/contrib/test_db_scripts.py b/tests/contrib/test_db_scripts.py
index a09a1a3..5b6747d 100644
--- a/tests/contrib/test_db_scripts.py
+++ b/tests/contrib/test_db_scripts.py
@@ -36,7 +36,6 @@ def db_connection(db_file):
 
 
 @pytest.fixture
-@pytest.mark.asyncio
 async def user_manager(password_hasher, db_connection):
     um = UserManager(db_connection)
     await um.db_sync()
@@ -44,7 +43,6 @@ async def user_manager(password_hasher, db_connection):
 
 
 @pytest.fixture
-@pytest.mark.asyncio
 async def topic_manager(password_hasher, db_connection):
     tm = TopicManager(db_connection)
     await tm.db_sync()
diff --git a/tests/contrib/test_shadows.py b/tests/contrib/test_shadows.py
index 294c293..78f9fc8 100644
--- a/tests/contrib/test_shadows.py
+++ b/tests/contrib/test_shadows.py
@@ -32,7 +32,6 @@ def db_connection(db_file):
 
 
 @pytest.fixture
-@pytest.mark.asyncio
 async def db_session_maker(db_connection):
     engine = create_async_engine(f"{db_connection}")
     db_session_maker = async_sessionmaker(engine, expire_on_commit=False)
@@ -41,7 +40,6 @@ async def db_session_maker(db_connection):
 
 
 @pytest.fixture
-@pytest.mark.asyncio
 async def shadow_plugin(db_connection):
 
     cfg = ShadowPlugin.Config(connection=db_connection)
