We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8cfb717 commit 02c5e4eCopy full SHA for 02c5e4e
tests/core/test_dialect.py
@@ -704,7 +704,7 @@ def test_parse_snowflake_create_schema_ddl():
704
assert parse_one("CREATE SCHEMA d.s", dialect="snowflake").sql() == "CREATE SCHEMA d.s"
705
706
707
-@pytest.mark.parametrize("dialect", set(DIALECT_TO_TYPE.values()))
+@pytest.mark.parametrize("dialect", sorted(set(DIALECT_TO_TYPE.values())))
708
def test_sqlglot_extended_correctly(dialect: str) -> None:
709
# MODEL is a SQLMesh extension and not part of SQLGlot
710
# If we can roundtrip an expression containing MODEL across every dialect, then the SQLMesh extensions have been registered correctly
0 commit comments