Skip to content

Commit

Permalink
add missing test params
Browse files Browse the repository at this point in the history
  • Loading branch information
LeonLuttenberger committed Sep 10, 2024
1 parent a554c47 commit aebfddf
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions tests/unit/test_athena.py
Original file line number Diff line number Diff line change
Expand Up @@ -461,6 +461,14 @@ def test_athena_paramstyle_qmark_parameters(
assert len(df_out) == 1


@pytest.mark.parametrize(
"ctas_approach,unload_approach",
[
pytest.param(False, False, id="regular"),
pytest.param(True, False, id="ctas"),
pytest.param(False, True, id="unload"),
],
)
def test_athena_paramstyle_qmark_with_caching(
path: str,
path2: str,
Expand Down

0 comments on commit aebfddf

Please sign in to comment.