Fix test run with runner

This commit is contained in:
kssenii 2024-11-13 15:26:32 +01:00
parent f8fbd0330c
commit 1e8ee2034a
3 changed files with 8 additions and 8 deletions

View File

@ -36,7 +36,7 @@ geomet==0.2.1.post1
grpcio-tools==1.60.0
grpcio==1.60.0
gssapi==1.8.3
httplib2==0.20.2
httplib2==0.22.0
idna==3.7
importlib-metadata==4.6.4
iniconfig==2.0.0
@ -72,7 +72,7 @@ pyarrow==17.0.0
pycparser==2.22
pycryptodome==3.20.0
pymongo==3.11.0
pyparsing==2.4.7
pyparsing==3.1.0
pyspark==3.3.2
pyspnego==0.10.2
pytest-order==1.0.0

View File

@ -17,7 +17,7 @@ services:
rest:
image: tabulario/iceberg-rest
ports:
- 8181:8181
- 8182:8181
environment:
- AWS_ACCESS_KEY_ID=minio
- AWS_SECRET_ACCESS_KEY=minio123
@ -36,9 +36,8 @@ services:
default:
aliases:
- warehouse.minio
ports:
- 9001:9001
- 9000:9000
expose:
- 9001
command: ["server", "/data", "--console-address", ":9001"]
mc:
depends_on:

View File

@ -28,8 +28,8 @@ from helpers.s3_tools import get_file_contents, list_s3_objects, prepare_s3_buck
from helpers.test_tools import TSV, csv_compare
BASE_URL = "http://rest:8181/v1"
BASE_URL_LOCAL = "http://localhost:8181/v1"
BASE_URL_LOCAL_RAW = "http://localhost:8181"
BASE_URL_LOCAL = "http://localhost:8182/v1"
BASE_URL_LOCAL_RAW = "http://localhost:8182"
CATALOG_NAME = "demo"
@ -125,6 +125,7 @@ def started_cluster():
# TODO: properly wait for container
time.sleep(10)
#cluster.minio_client.make_bucket("warehouse")
yield cluster