From 2790c77e59a1a5ee74e72a4992b0575901535ecb Mon Sep 17 00:00:00 2001 From: Rishat Fayzullin Date: Tue, 5 Mar 2024 12:15:21 +0300 Subject: [PATCH] Mongo storage included to storages test --- tests/test_fsm/storage/test_storages.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/test_fsm/storage/test_storages.py b/tests/test_fsm/storage/test_storages.py index 3558e33d..d9874c68 100644 --- a/tests/test_fsm/storage/test_storages.py +++ b/tests/test_fsm/storage/test_storages.py @@ -11,7 +11,11 @@ def create_storage_key(bot: MockedBot): @pytest.mark.parametrize( "storage", - [pytest.lazy_fixture("redis_storage"), pytest.lazy_fixture("memory_storage")], + [ + pytest.lazy_fixture("redis_storage"), + pytest.lazy_fixture("mongo_storage"), + pytest.lazy_fixture("memory_storage"), + ], ) class TestStorages: async def test_set_state(self, bot: MockedBot, storage: BaseStorage, storage_key: StorageKey):