From 2152fa58109fd53b32577dce49417bba5d8bebd9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20Gr=C3=B6nholm?= Date: Wed, 21 Sep 2022 02:20:52 +0300 Subject: Readded psycopg2 and pymysql store fixtures to the test suite --- tests/conftest.py | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/tests/conftest.py b/tests/conftest.py index 6b3de78..0de4349 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -157,7 +157,7 @@ def psycopg2_store() -> DataStore: @pytest.fixture -def mysql_store() -> DataStore: +def pymysql_store() -> DataStore: from sqlalchemy.future import create_engine from apscheduler.datastores.sqlalchemy import SQLAlchemyDataStore @@ -211,6 +211,16 @@ async def asyncmy_store() -> DataStore: id="asyncmy", marks=[pytest.mark.external_service], ), + pytest.param( + lazy_fixture("psycopg2_store"), + id="psycopg2", + marks=[pytest.mark.external_service], + ), + pytest.param( + lazy_fixture("pymysql_store"), + id="pymysql", + marks=[pytest.mark.external_service], + ), pytest.param( lazy_fixture("mongodb_store"), id="mongodb", -- cgit v1.2.1