infrahub-testcontainers 1.7.0b0__tar.gz → 1.7.0rc0__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.7.0b0 → infrahub_testcontainers-1.7.0rc0}/PKG-INFO +2 -2
- {infrahub_testcontainers-1.7.0b0 → infrahub_testcontainers-1.7.0rc0}/infrahub_testcontainers/models.py +3 -3
- {infrahub_testcontainers-1.7.0b0 → infrahub_testcontainers-1.7.0rc0}/pyproject.toml +2 -2
- {infrahub_testcontainers-1.7.0b0 → infrahub_testcontainers-1.7.0rc0}/.gitignore +0 -0
- {infrahub_testcontainers-1.7.0b0 → infrahub_testcontainers-1.7.0rc0}/README.md +0 -0
- {infrahub_testcontainers-1.7.0b0 → infrahub_testcontainers-1.7.0rc0}/infrahub_testcontainers/__init__.py +0 -0
- {infrahub_testcontainers-1.7.0b0 → infrahub_testcontainers-1.7.0rc0}/infrahub_testcontainers/constants.py +0 -0
- {infrahub_testcontainers-1.7.0b0 → infrahub_testcontainers-1.7.0rc0}/infrahub_testcontainers/container.py +0 -0
- {infrahub_testcontainers-1.7.0b0 → infrahub_testcontainers-1.7.0rc0}/infrahub_testcontainers/docker-compose-cluster.test.yml +0 -0
- {infrahub_testcontainers-1.7.0b0 → infrahub_testcontainers-1.7.0rc0}/infrahub_testcontainers/docker-compose.test.yml +0 -0
- {infrahub_testcontainers-1.7.0b0 → infrahub_testcontainers-1.7.0rc0}/infrahub_testcontainers/haproxy.cfg +0 -0
- {infrahub_testcontainers-1.7.0b0 → infrahub_testcontainers-1.7.0rc0}/infrahub_testcontainers/helpers.py +0 -0
- {infrahub_testcontainers-1.7.0b0 → infrahub_testcontainers-1.7.0rc0}/infrahub_testcontainers/host.py +0 -0
- {infrahub_testcontainers-1.7.0b0 → infrahub_testcontainers-1.7.0rc0}/infrahub_testcontainers/measurements.py +0 -0
- {infrahub_testcontainers-1.7.0b0 → infrahub_testcontainers-1.7.0rc0}/infrahub_testcontainers/performance_test.py +0 -0
- {infrahub_testcontainers-1.7.0b0 → infrahub_testcontainers-1.7.0rc0}/infrahub_testcontainers/plugin.py +0 -0
- {infrahub_testcontainers-1.7.0b0 → infrahub_testcontainers-1.7.0rc0}/infrahub_testcontainers/prometheus.yml +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: infrahub-testcontainers
|
|
3
|
-
Version: 1.7.
|
|
3
|
+
Version: 1.7.0rc0
|
|
4
4
|
Summary: Testcontainers instance for Infrahub to easily build integration tests
|
|
5
5
|
Project-URL: Homepage, https://opsmill.com
|
|
6
6
|
Project-URL: Repository, https://github.com/opsmill/infrahub
|
|
@@ -14,7 +14,7 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
14
14
|
Classifier: Programming Language :: Python :: 3.13
|
|
15
15
|
Classifier: Programming Language :: Python :: 3.14
|
|
16
16
|
Requires-Python: >=3.10
|
|
17
|
-
Requires-Dist: httpx
|
|
17
|
+
Requires-Dist: httpx>=0.20
|
|
18
18
|
Requires-Dist: prefect-client==3.6.7
|
|
19
19
|
Requires-Dist: psutil
|
|
20
20
|
Requires-Dist: pydantic<3,>=2.10.6
|
|
@@ -2,7 +2,7 @@ from __future__ import annotations
|
|
|
2
2
|
|
|
3
3
|
from datetime import datetime, timezone
|
|
4
4
|
from enum import Enum
|
|
5
|
-
from typing import Any
|
|
5
|
+
from typing import Any
|
|
6
6
|
|
|
7
7
|
from pydantic import BaseModel, Field
|
|
8
8
|
|
|
@@ -23,7 +23,7 @@ class MeasurementDefinition(BaseModel):
|
|
|
23
23
|
|
|
24
24
|
class InfrahubResultContext(BaseModel):
|
|
25
25
|
name: str
|
|
26
|
-
value:
|
|
26
|
+
value: int | float | str
|
|
27
27
|
unit: ContextUnit
|
|
28
28
|
|
|
29
29
|
|
|
@@ -35,6 +35,6 @@ class InfrahubActiveMeasurementItem(BaseModel):
|
|
|
35
35
|
|
|
36
36
|
class InfrahubMeasurementItem(BaseModel):
|
|
37
37
|
name: str
|
|
38
|
-
value:
|
|
38
|
+
value: int | float | str
|
|
39
39
|
unit: ContextUnit
|
|
40
40
|
context: dict[str, Any] = Field(default_factory=dict)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "infrahub-testcontainers"
|
|
3
|
-
version = "1.7.
|
|
3
|
+
version = "1.7.0rc0"
|
|
4
4
|
requires-python = ">=3.10"
|
|
5
5
|
|
|
6
6
|
description = "Testcontainers instance for Infrahub to easily build integration tests"
|
|
@@ -21,7 +21,7 @@ dependencies = [
|
|
|
21
21
|
"testcontainers>=4.8,<4.9",
|
|
22
22
|
"psutil",
|
|
23
23
|
"pytest",
|
|
24
|
-
"httpx
|
|
24
|
+
"httpx>=0.20",
|
|
25
25
|
"pydantic>=2.10.6,<3",
|
|
26
26
|
"prefect-client==3.6.7",
|
|
27
27
|
]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{infrahub_testcontainers-1.7.0b0 → infrahub_testcontainers-1.7.0rc0}/infrahub_testcontainers/host.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|