Skip to content

Commit 927e22b

Browse files
authored
ci: Truncate the # of concurrent jobs in PR CI (#5122)
1 parent f187716 commit 927e22b

File tree

8 files changed

+148
-156
lines changed

8 files changed

+148
-156
lines changed

.github/workflows/pr-test-suite.yml

Lines changed: 145 additions & 155 deletions
Large diffs are not rendered by default.
File renamed without changes.

tests/integration/unity/conftest.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
from __future__ import annotations
22

3+
import os
34
import time
45

56
import pytest
@@ -11,7 +12,8 @@
1112

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

0 commit comments

Comments
 (0)