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
311 changes: 148 additions & 163 deletions .github/workflows/pr-test-suite.yml

Large diffs are not rendered by default.

File renamed without changes.
4 changes: 3 additions & 1 deletion tests/integration/unity/conftest.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from __future__ import annotations

import os
import time

import pytest
Expand All @@ -11,7 +12,8 @@

@pytest.fixture(scope="session")
def local_unity_catalog() -> UnityCatalog:
endpoint = "http://127.0.0.1:8080"
port = os.environ.get("UNITY_CATALOG_PORT", 8080)
endpoint = f"http://127.0.0.1:{port}"
max_retries = 25
retry_delay = 5 # seconds

Expand Down