Skip to content

Commit

Permalink
remove enable_parquet_filetype param (#1516)
Browse files Browse the repository at this point in the history
* remove enable_parquet_filetype param

* don't skip the test when running merge gates
  • Loading branch information
sfc-gh-aalam authored Apr 18, 2023
1 parent dad97ae commit 4ff7485
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions test/integ/test_put_get_medium.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,9 +239,6 @@ def run(cnx, sql):
run(cnx, "drop table if exists {name}")


@pytest.mark.skipif(
not CONNECTION_PARAMETERS_ADMIN, reason="Snowflake admin account is not accessible."
)
@pytest.mark.parametrize(
"from_path", [True, pytest.param(False, marks=pytest.mark.skipolddriver)]
)
Expand All @@ -255,7 +252,6 @@ def run(cnx, sql):
return cnx.cursor().execute(sql).fetchall()

with conn_cnx() as cnx:
run(cnx, "alter session set enable_parquet_filetype=true")
run(
cnx,
"""
Expand All @@ -281,7 +277,6 @@ def run(cnx, sql):
assert rec[1] == "LOADED"

run(cnx, "drop table if exists {name}")
run(cnx, "alter session unset enable_parquet_filetype")


@pytest.mark.parametrize(
Expand Down

0 comments on commit 4ff7485

Please sign in to comment.