summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/conftest.py12
1 files changed, 11 insertions, 1 deletions
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
@@ -212,6 +212,16 @@ async def asyncmy_store() -> DataStore:
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",
marks=[pytest.mark.external_service],