Skip to content

Commit

Permalink
NO-SNOW: Reduce maximum number of integrations to 36
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-jrose committed Jan 24, 2025
1 parent f801bd0 commit 89605a4
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions tests/integ/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,12 +232,12 @@ def session(
unparser_jar,
):
set_ast_state(AstFlagSource.TEST, ast_enabled)
rule1 = f"rule1{Utils.random_alphanumeric_str(10)}"
rule2 = f"rule2{Utils.random_alphanumeric_str(10)}"
key1 = f"key1{Utils.random_alphanumeric_str(10)}"
key2 = f"key2{Utils.random_alphanumeric_str(10)}"
integration1 = f"integration1_{Utils.random_alphanumeric_str(10)}"
integration2 = f"integration2_{Utils.random_alphanumeric_str(10)}"
rule1 = f"rule1{Utils.random_alphanumeric_str(1)}"
rule2 = f"rule2{Utils.random_alphanumeric_str(1)}"
key1 = f"key1{Utils.random_alphanumeric_str(1)}"
key2 = f"key2{Utils.random_alphanumeric_str(1)}"
integration1 = f"integration1_{Utils.random_alphanumeric_str(1)}"
integration2 = f"integration2_{Utils.random_alphanumeric_str(1)}"

session = (
Session.builder.configs(db_parameters)
Expand Down Expand Up @@ -280,12 +280,12 @@ def profiler_session(
local_testing_mode,
cte_optimization_enabled,
):
rule1 = f"rule1{Utils.random_alphanumeric_str(10)}"
rule2 = f"rule2{Utils.random_alphanumeric_str(10)}"
key1 = f"key1{Utils.random_alphanumeric_str(10)}"
key2 = f"key2{Utils.random_alphanumeric_str(10)}"
integration1 = f"integration1_{Utils.random_alphanumeric_str(10)}"
integration2 = f"integration2_{Utils.random_alphanumeric_str(10)}"
rule1 = f"rule1{Utils.random_alphanumeric_str(1)}"
rule2 = f"rule2{Utils.random_alphanumeric_str(1)}"
key1 = f"key1{Utils.random_alphanumeric_str(1)}"
key2 = f"key2{Utils.random_alphanumeric_str(1)}"
integration1 = f"integration1_{Utils.random_alphanumeric_str(1)}"
integration2 = f"integration2_{Utils.random_alphanumeric_str(1)}"
session = (
Session.builder.configs(db_parameters)
.config("local_testing", local_testing_mode)
Expand Down

0 comments on commit 89605a4

Please sign in to comment.