1
0
mirror of synced 2025-12-23 21:03:15 -05:00

test(source-gcs): add integration test (#45850)

Signed-off-by: Artem Inzhyyants <artem.inzhyyants@gmail.com>
This commit is contained in:
Artem Inzhyyants
2024-09-24 20:27:19 +02:00
committed by GitHub
parent 2023b64738
commit f3c748b8e7
30 changed files with 926 additions and 152 deletions

View File

@@ -24,6 +24,7 @@ def _file_uri() -> str:
def remote_file():
return GCSRemoteFile(uri=_file_uri(), last_modified=datetime.now(), mime_type="csv")
@pytest.fixture
def remote_file_older():
return GCSRemoteFile(uri=_file_uri(), last_modified=datetime.now() - timedelta(days=1))