Skip to content

Commit fdd5c3f

Browse files
committed
Cleaning up remaining table after tests.
1 parent 678262b commit fdd5c3f

File tree

3 files changed

+2
-1
lines changed

3 files changed

+2
-1
lines changed

requirements-dev.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,3 @@ moto==1.3.16
2020
jupyterlab==2.2.8
2121
jupyter==1.0.0
2222
s3fs==0.4.2
23-
-e .

requirements.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ set -ex
33

44
pip install --upgrade --upgrade-strategy eager pip wheel
55
pip --use-feature=2020-resolver install --upgrade --upgrade-strategy eager --requirement requirements-dev.txt
6+
pip --use-feature=2020-resolver install --upgrade --upgrade-strategy eager --editable .

tests/test_athena_parquet.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -518,6 +518,7 @@ def test_to_parquet_sanitize(path, glue_database):
518518
)["paths"]
519519
wr.s3.wait_objects_exist(paths)
520520
df2 = wr.athena.read_sql_table(database=glue_database, table=table_name)
521+
wr.catalog.delete_table_if_exists(database=glue_database, table="table_name_")
521522
assert df.shape == df2.shape
522523
assert list(df2.columns) == ["c0", "camel_case", "c_2"]
523524
assert df2.c0.sum() == 1

0 commit comments

Comments
 (0)