Skip to content

Commit aebfddf

Browse files
add missing test params
1 parent a554c47 commit aebfddf

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

tests/unit/test_athena.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -461,6 +461,14 @@ def test_athena_paramstyle_qmark_parameters(
461461
assert len(df_out) == 1
462462

463463

464+
@pytest.mark.parametrize(
465+
"ctas_approach,unload_approach",
466+
[
467+
pytest.param(False, False, id="regular"),
468+
pytest.param(True, False, id="ctas"),
469+
pytest.param(False, True, id="unload"),
470+
],
471+
)
464472
def test_athena_paramstyle_qmark_with_caching(
465473
path: str,
466474
path2: str,

0 commit comments

Comments
 (0)