Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ name: PostCommit Python Xlang IO Direct

on:
schedule:
- cron: '30 5/6 * * *'
- cron: '30 4/6 * * *'
pull_request_target:
paths: ['release/trigger_all_tests.json', '.github/trigger_files/beam_PostCommit_Python_Xlang_IO_Direct.json']
workflow_dispatch:
Expand Down
4 changes: 2 additions & 2 deletions sdks/python/apache_beam/transforms/managed_iceberg_it_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
#

import os
import time
import unittest
import uuid

import pytest

Expand Down Expand Up @@ -53,7 +53,7 @@ def _create_row(self, num: int):

def test_write_read_pipeline(self):
iceberg_config = {
"table": "test_iceberg_write_read.test_" + str(int(time.time())),
"table": "test_iceberg_write_read.test_" + uuid.uuid4().hex,
"catalog_name": "default",
"catalog_properties": {
"type": "hadoop",
Expand Down
Loading