Skip to content

Commit

Permalink
SNOW-1844280: fix stored proc pytest option issue (#2709)
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-aling authored Dec 4, 2024
1 parent a5ab0b6 commit 8cd7d40
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,8 @@ def sql_simplifier_enabled(pytestconfig):

@pytest.fixture(scope="session")
def local_testing_mode(pytestconfig):
return pytestconfig.getoption("local_testing_mode")
# SNOW-1845413 we have a default value here unlike other options to bypass test in stored procedure
return pytestconfig.getoption("local_testing_mode", False)


@pytest.fixture(scope="function")
Expand Down

0 comments on commit 8cd7d40

Please sign in to comment.