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.
Files changed (15) hide show
  1. {infrahub_testcontainers-1.2.7 → infrahub_testcontainers-1.2.9rc0}/PKG-INFO +1 -1
  2. {infrahub_testcontainers-1.2.7 → infrahub_testcontainers-1.2.9rc0}/infrahub_testcontainers/container.py +1 -0
  3. {infrahub_testcontainers-1.2.7 → infrahub_testcontainers-1.2.9rc0}/infrahub_testcontainers/docker-compose.test.yml +4 -0
  4. {infrahub_testcontainers-1.2.7 → infrahub_testcontainers-1.2.9rc0}/pyproject.toml +2 -2
  5. {infrahub_testcontainers-1.2.7 → infrahub_testcontainers-1.2.9rc0}/README.md +0 -0
  6. {infrahub_testcontainers-1.2.7 → infrahub_testcontainers-1.2.9rc0}/infrahub_testcontainers/__init__.py +0 -0
  7. {infrahub_testcontainers-1.2.7 → infrahub_testcontainers-1.2.9rc0}/infrahub_testcontainers/constants.py +0 -0
  8. {infrahub_testcontainers-1.2.7 → infrahub_testcontainers-1.2.9rc0}/infrahub_testcontainers/haproxy.cfg +0 -0
  9. {infrahub_testcontainers-1.2.7 → infrahub_testcontainers-1.2.9rc0}/infrahub_testcontainers/helpers.py +0 -0
  10. {infrahub_testcontainers-1.2.7 → infrahub_testcontainers-1.2.9rc0}/infrahub_testcontainers/host.py +0 -0
  11. {infrahub_testcontainers-1.2.7 → infrahub_testcontainers-1.2.9rc0}/infrahub_testcontainers/measurements.py +0 -0
  12. {infrahub_testcontainers-1.2.7 → infrahub_testcontainers-1.2.9rc0}/infrahub_testcontainers/models.py +0 -0
  13. {infrahub_testcontainers-1.2.7 → infrahub_testcontainers-1.2.9rc0}/infrahub_testcontainers/performance_test.py +0 -0
  14. {infrahub_testcontainers-1.2.7 → infrahub_testcontainers-1.2.9rc0}/infrahub_testcontainers/plugin.py +0 -0
  15. {infrahub_testcontainers-1.2.7 → infrahub_testcontainers-1.2.9rc0}/infrahub_testcontainers/prometheus.yml +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: infrahub-testcontainers
3
- Version: 1.2.7
3
+ Version: 1.2.9rc0
4
4
  Summary: Testcontainers instance for Infrahub to easily build integration tests
5
5
  Home-page: https://opsmill.com
6
6
  License: Apache-2.0
@@ -59,6 +59,7 @@ PROJECT_ENV_VARIABLES: dict[str, str] = {
59
59
  "INFRAHUB_TESTING_TASK_WORKER_COUNT": "2",
60
60
  "INFRAHUB_TESTING_PREFECT_UI_ENABLED": "true",
61
61
  "INFRAHUB_TESTING_DOCKER_PULL": "true",
62
+ "INFRAHUB_TESTING_SCHEMA_STRICT_MODE": "true",
62
63
  }
63
64
 
64
65
 
@@ -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.7"
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.7"
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"