infrahub-testcontainers 1.2.7__tar.gz → 1.2.9rc0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {infrahub_testcontainers-1.2.7 → infrahub_testcontainers-1.2.9rc0}/PKG-INFO +1 -1
- {infrahub_testcontainers-1.2.7 → infrahub_testcontainers-1.2.9rc0}/infrahub_testcontainers/container.py +1 -0
- {infrahub_testcontainers-1.2.7 → infrahub_testcontainers-1.2.9rc0}/infrahub_testcontainers/docker-compose.test.yml +4 -0
- {infrahub_testcontainers-1.2.7 → infrahub_testcontainers-1.2.9rc0}/pyproject.toml +2 -2
- {infrahub_testcontainers-1.2.7 → infrahub_testcontainers-1.2.9rc0}/README.md +0 -0
- {infrahub_testcontainers-1.2.7 → infrahub_testcontainers-1.2.9rc0}/infrahub_testcontainers/__init__.py +0 -0
- {infrahub_testcontainers-1.2.7 → infrahub_testcontainers-1.2.9rc0}/infrahub_testcontainers/constants.py +0 -0
- {infrahub_testcontainers-1.2.7 → infrahub_testcontainers-1.2.9rc0}/infrahub_testcontainers/haproxy.cfg +0 -0
- {infrahub_testcontainers-1.2.7 → infrahub_testcontainers-1.2.9rc0}/infrahub_testcontainers/helpers.py +0 -0
- {infrahub_testcontainers-1.2.7 → infrahub_testcontainers-1.2.9rc0}/infrahub_testcontainers/host.py +0 -0
- {infrahub_testcontainers-1.2.7 → infrahub_testcontainers-1.2.9rc0}/infrahub_testcontainers/measurements.py +0 -0
- {infrahub_testcontainers-1.2.7 → infrahub_testcontainers-1.2.9rc0}/infrahub_testcontainers/models.py +0 -0
- {infrahub_testcontainers-1.2.7 → infrahub_testcontainers-1.2.9rc0}/infrahub_testcontainers/performance_test.py +0 -0
- {infrahub_testcontainers-1.2.7 → infrahub_testcontainers-1.2.9rc0}/infrahub_testcontainers/plugin.py +0 -0
- {infrahub_testcontainers-1.2.7 → infrahub_testcontainers-1.2.9rc0}/infrahub_testcontainers/prometheus.yml +0 -0
|
@@ -123,12 +123,14 @@ services:
|
|
|
123
123
|
INFRAHUB_INITIAL_AGENT_TOKEN: ${INFRAHUB_TESTING_INITIAL_AGENT_TOKEN}
|
|
124
124
|
INFRAHUB_SECURITY_SECRET_KEY: ${INFRAHUB_TESTING_SECURITY_SECRET_KEY}
|
|
125
125
|
PREFECT_API_URL: ${INFRAHUB_TESTING_PREFECT_API}
|
|
126
|
+
INFRAHUB_EXPERIMENTAL_VALUE_DB_INDEX:
|
|
126
127
|
# Tracing
|
|
127
128
|
INFRAHUB_TRACE_ENABLE: ${INFRAHUB_TRACE_ENABLE:-false}
|
|
128
129
|
INFRAHUB_TRACE_EXPORTER_ENDPOINT:
|
|
129
130
|
INFRAHUB_TRACE_EXPORTER_PROTOCOL: ${INFRAHUB_TRACE_EXPORTER_PROTOCOL:-grpc}
|
|
130
131
|
INFRAHUB_TRACE_EXPORTER_TYPE: ${INFRAHUB_TRACE_EXPORTER_TYPE:-console}
|
|
131
132
|
INFRAHUB_TRACE_INSECURE: ${INFRAHUB_TRACE_INSECURE:-true}
|
|
133
|
+
INFRAHUB_SCHEMA_STRICT_MODE: ${INFRAHUB_TESTING_SCHEMA_STRICT_MODE}
|
|
132
134
|
OTEL_RESOURCE_ATTRIBUTES:
|
|
133
135
|
depends_on:
|
|
134
136
|
database:
|
|
@@ -169,12 +171,14 @@ services:
|
|
|
169
171
|
INFRAHUB_WORKFLOW_ADDRESS: ${INFRAHUB_TESTING_WORKFLOW_ADDRESS}
|
|
170
172
|
INFRAHUB_TIMEOUT: ${INFRAHUB_TESTING_TIMEOUT}
|
|
171
173
|
PREFECT_API_URL: ${INFRAHUB_TESTING_PREFECT_API}
|
|
174
|
+
INFRAHUB_EXPERIMENTAL_VALUE_DB_INDEX:
|
|
172
175
|
# Tracing
|
|
173
176
|
INFRAHUB_TRACE_ENABLE: ${INFRAHUB_TRACE_ENABLE:-false}
|
|
174
177
|
INFRAHUB_TRACE_EXPORTER_ENDPOINT:
|
|
175
178
|
INFRAHUB_TRACE_EXPORTER_PROTOCOL: ${INFRAHUB_TRACE_EXPORTER_PROTOCOL:-grpc}
|
|
176
179
|
INFRAHUB_TRACE_EXPORTER_TYPE: ${INFRAHUB_TRACE_EXPORTER_TYPE:-console}
|
|
177
180
|
INFRAHUB_TRACE_INSECURE: ${INFRAHUB_TRACE_INSECURE:-true}
|
|
181
|
+
INFRAHUB_SCHEMA_STRICT_MODE: ${INFRAHUB_TESTING_SCHEMA_STRICT_MODE}
|
|
178
182
|
OTEL_RESOURCE_ATTRIBUTES:
|
|
179
183
|
depends_on:
|
|
180
184
|
- infrahub-server
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "infrahub-testcontainers"
|
|
3
|
-
version = "1.2.
|
|
3
|
+
version = "1.2.9rc0"
|
|
4
4
|
requires-python = ">=3.9"
|
|
5
5
|
|
|
6
6
|
[tool.poetry]
|
|
7
7
|
name = "infrahub-testcontainers"
|
|
8
|
-
version = "1.2.
|
|
8
|
+
version = "1.2.9rc0"
|
|
9
9
|
description = "Testcontainers instance for Infrahub to easily build integration tests"
|
|
10
10
|
authors = ["OpsMill <info@opsmill.com>"]
|
|
11
11
|
readme = "README.md"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{infrahub_testcontainers-1.2.7 → infrahub_testcontainers-1.2.9rc0}/infrahub_testcontainers/host.py
RENAMED
|
File without changes
|
|
File without changes
|
{infrahub_testcontainers-1.2.7 → infrahub_testcontainers-1.2.9rc0}/infrahub_testcontainers/models.py
RENAMED
|
File without changes
|
|
File without changes
|
{infrahub_testcontainers-1.2.7 → infrahub_testcontainers-1.2.9rc0}/infrahub_testcontainers/plugin.py
RENAMED
|
File without changes
|
|
File without changes
|