Skip to content

Commit 8169575

Browse files
committed
Add lincense and update poetry.lock
1 parent e15a84f commit 8169575

5 files changed

Lines changed: 119 additions & 56 deletions

File tree

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ test-integration-rebuild: ## Rebuild integration Docker services from scratch
103103
docker compose -f dev/docker-compose-integration.yml rm -f
104104
docker compose -f dev/docker-compose-integration.yml build --no-cache
105105

106-
test-integration-trino:
106+
test-integration-trino: ## Run tests marked with @pytest.mark.integration_trino
107107
sh ./dev/run-trino.sh
108108
$(TEST_RUNNER) pytest tests/ -m integration_trino $(PYTEST_ARGS)
109109

@@ -120,7 +120,7 @@ test-gcs: ## Run tests marked with @pytest.mark.gcs
120120
$(TEST_RUNNER) pytest tests/ -m gcs $(PYTEST_ARGS)
121121

122122
test-coverage: COVERAGE=1
123-
test-coverage: test test-integration test-s3 test-adls test-gcs coverage-report ## Run all tests with coverage and report
123+
test-coverage: test test-integration test-integration-trino test-s3 test-adls test-gcs coverage-report ## Run all tests with coverage and report
124124

125125
coverage-report: ## Combine and report coverage
126126
poetry run coverage combine

dev/docker-compose-trino.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing,
12+
# software distributed under the License is distributed on an
13+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14+
# KIND, either express or implied. See the License for the
15+
# specific language governing permissions and limitations
16+
# under the License.
117
services:
218
rest:
319
image: apache/iceberg-rest-fixture

dev/trino/catalog/warehouse_hive.properties

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing,
12+
# software distributed under the License is distributed on an
13+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14+
# KIND, either express or implied. See the License for the
15+
# specific language governing permissions and limitations
16+
# under the License.
117
connector.name=iceberg
218
iceberg.catalog.type=hive_metastore
319
iceberg.expire-snapshots.min-retention=0d

dev/trino/catalog/warehouse_rest.properties

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing,
12+
# software distributed under the License is distributed on an
13+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14+
# KIND, either express or implied. See the License for the
15+
# specific language governing permissions and limitations
16+
# under the License.
117
connector.name=iceberg
218
iceberg.catalog.type=rest
319
iceberg.rest-catalog.uri=http://rest:8181

0 commit comments

Comments
 (0)