Skip to content

Commit f8cda28

Browse files
Apply suggestion
Co-authored-by: Iaroslav Zeigerman <zeigerman.ia@gmail.com>
1 parent cb3aef1 commit f8cda28

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

sqlmesh/core/config/connection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def validate(cls: t.Any, data: t.Any) -> t.Any:
7575
raise ConfigError(
7676
f"Failed to import the '{engine_type}' engine library. This may be due to a missing "
7777
"or incompatible installation. Please ensure the required dependency is installed by "
78-
f'running: pip install "sqlmesh[{extra_name}]". For more details, check the logs '
78+
f'running: `pip install "sqlmesh[{extra_name}]"`. For more details, check the logs '
7979
"in the 'logs/' folder, or rerun the command with the '--debug' flag."
8080
)
8181

tests/core/test_connection_config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1018,7 +1018,7 @@ def test_engine_import_validator():
10181018
match=re.escape(
10191019
"Failed to import the 'bigquery' engine library. This may be due to a missing "
10201020
"or incompatible installation. Please ensure the required dependency is installed by "
1021-
'running: pip install "sqlmesh[bigquery]". For more details, check the logs '
1021+
'running: `pip install "sqlmesh[bigquery]"`. For more details, check the logs '
10221022
"in the 'logs/' folder, or rerun the command with the '--debug' flag."
10231023
),
10241024
):
@@ -1033,7 +1033,7 @@ class TestConfigA(PydanticModel):
10331033
match=re.escape(
10341034
"Failed to import the 'bigquery' engine library. This may be due to a missing "
10351035
"or incompatible installation. Please ensure the required dependency is installed by "
1036-
'running: pip install "sqlmesh[bigquery_extra]". For more details, check the logs '
1036+
'running: `pip install "sqlmesh[bigquery_extra]"`. For more details, check the logs '
10371037
"in the 'logs/' folder, or rerun the command with the '--debug' flag."
10381038
),
10391039
):

0 commit comments

Comments
 (0)