Skip to content

Commit b064788

Browse files
committed
coverage fix
1 parent ca0b6c4 commit b064788

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

ellar_sql/migrations/multiple.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,9 @@ def default_process_revision_directives(
8181
directives[:] = []
8282
logger.info("No changes in schema detected.")
8383

84-
def run_migrations_offline(self, context: "EnvironmentContext") -> None:
84+
def run_migrations_offline(
85+
self, context: "EnvironmentContext"
86+
) -> None: # pragma:no cover
8587
"""Run migrations in 'offline' mode.
8688
8789
This configures the context with just a URL

ellar_sql/migrations/single.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,9 @@ def default_process_revision_directives(
3737
directives[:] = []
3838
logger.info("No changes in schema detected.")
3939

40-
def run_migrations_offline(self, context: "EnvironmentContext") -> None:
40+
def run_migrations_offline(
41+
self, context: "EnvironmentContext"
42+
) -> None: # pragma:no cover
4143
"""Run migrations in 'offline' mode.
4244
4345
This configures the context with just a URL

0 commit comments

Comments
 (0)