Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Print during test
Browse files Browse the repository at this point in the history
  • Loading branch information
markbruning committed Sep 28, 2023
1 parent ec80139 commit 9cce957
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/deploments/test_steps.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ def tmp_files_win(tmp_path: Path):
"testfile1.txt",
"testfile2.txt",
"testfile3.txt",
"testdir1\\testfile4.txt",
"testdir2\\testfile5.txt",
r"testdir1\testfile4.txt",
r"testdir2\testfile5.txt",
]

for file in files:
Expand Down Expand Up @@ -105,6 +105,7 @@ def test_push_to_s3_as_posix(s3_setup, tmp_files_win, mock_aws_credentials):

s3_objects = s3.list_objects_v2(Bucket=bucket_name)
object_keys = [item["Key"] for item in s3_objects["Contents"]]
print(s3_objects)

expected_keys = [
f"{folder}/testfile1.txt",
Expand Down

0 comments on commit 9cce957

Please sign in to comment.