infrahub-testcontainers 1.5.5__py3-none-any.whl → 1.6.0__py3-none-any.whl
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/container.py +2 -2
- infrahub_testcontainers/docker-compose-cluster.test.yml +1 -1
- infrahub_testcontainers/docker-compose.test.yml +1 -1
- {infrahub_testcontainers-1.5.5.dist-info → infrahub_testcontainers-1.6.0.dist-info}/METADATA +12 -15
- {infrahub_testcontainers-1.5.5.dist-info → infrahub_testcontainers-1.6.0.dist-info}/RECORD +7 -7
- {infrahub_testcontainers-1.5.5.dist-info → infrahub_testcontainers-1.6.0.dist-info}/WHEEL +1 -1
- infrahub_testcontainers-1.6.0.dist-info/entry_points.txt +2 -0
- infrahub_testcontainers-1.5.5.dist-info/entry_points.txt +0 -3
|
@@ -33,7 +33,7 @@ PROJECT_ENV_VARIABLES: dict[str, str] = {
|
|
|
33
33
|
"MESSAGE_QUEUE_DOCKER_IMAGE": "rabbitmq:3.13.7-management",
|
|
34
34
|
"CACHE_DOCKER_IMAGE": "redis:7.2.11",
|
|
35
35
|
"INFRAHUB_TESTING_DOCKER_IMAGE": "registry.opsmill.io/opsmill/infrahub",
|
|
36
|
-
"INFRAHUB_TESTING_DOCKER_ENTRYPOINT": f"gunicorn --config backend/infrahub/serve/gunicorn_config.py -w {os.environ.get('INFRAHUB_TESTING_WEB_CONCURRENCY', 4)} --logger-class infrahub.serve.log.GunicornLogger infrahub.server:app", # noqa: E501
|
|
36
|
+
"INFRAHUB_TESTING_DOCKER_ENTRYPOINT": f"gunicorn --config backend/infrahub/serve/gunicorn_config.py -w {os.environ.get('INFRAHUB_TESTING_WEB_CONCURRENCY', '4')} --logger-class infrahub.serve.log.GunicornLogger infrahub.server:app", # noqa: E501
|
|
37
37
|
"INFRAHUB_TESTING_IMAGE_VERSION": infrahub_version,
|
|
38
38
|
"INFRAHUB_TESTING_PRODUCTION": "false",
|
|
39
39
|
"INFRAHUB_TESTING_DB_ADDRESS": "database",
|
|
@@ -149,7 +149,7 @@ class InfrahubDockerCompose(DockerCompose):
|
|
|
149
149
|
PROJECT_ENV_VARIABLES.update(
|
|
150
150
|
{
|
|
151
151
|
"INFRAHUB_TESTING_DOCKER_IMAGE": "registry.opsmill.io/opsmill/infrahub-enterprise",
|
|
152
|
-
"INFRAHUB_TESTING_DOCKER_ENTRYPOINT": f"gunicorn --config community/backend/infrahub/serve/gunicorn_config.py -w {os.environ.get('INFRAHUB_TESTING_WEB_CONCURRENCY', 4)} --logger-class infrahub.serve.log.GunicornLogger infrahub_enterprise.server:app", # noqa: E501
|
|
152
|
+
"INFRAHUB_TESTING_DOCKER_ENTRYPOINT": f"gunicorn --config community/backend/infrahub/serve/gunicorn_config.py -w {os.environ.get('INFRAHUB_TESTING_WEB_CONCURRENCY', '4')} --logger-class infrahub.serve.log.GunicornLogger infrahub_enterprise.server:app", # noqa: E501
|
|
153
153
|
"INFRAHUB_TESTING_WORKFLOW_DEFAULT_WORKER_TYPE": "infrahubentasync",
|
|
154
154
|
"INFRAHUB_TESTING_PREFECT_UI_ENABLED": "false",
|
|
155
155
|
"NEO4J_DOCKER_IMAGE": "neo4j:2025.03.0-enterprise",
|
|
@@ -196,7 +196,7 @@ services:
|
|
|
196
196
|
|
|
197
197
|
WEB_CONCURRENCY: ${INFRAHUB_TESTING_TASKMGR_API_WORKERS:-1}
|
|
198
198
|
healthcheck:
|
|
199
|
-
test: /
|
|
199
|
+
test: curl -s -f -o /dev/null http://localhost:4200/api/health || exit 1
|
|
200
200
|
interval: 5s
|
|
201
201
|
timeout: 5s
|
|
202
202
|
retries: 20
|
|
@@ -107,7 +107,7 @@ services:
|
|
|
107
107
|
|
|
108
108
|
WEB_CONCURRENCY: ${INFRAHUB_TESTING_TASKMGR_API_WORKERS:-1}
|
|
109
109
|
healthcheck:
|
|
110
|
-
test: /
|
|
110
|
+
test: curl -s -f -o /dev/null http://localhost:4200/api/health || exit 1
|
|
111
111
|
interval: 5s
|
|
112
112
|
timeout: 5s
|
|
113
113
|
retries: 20
|
{infrahub_testcontainers-1.5.5.dist-info → infrahub_testcontainers-1.6.0.dist-info}/METADATA
RENAMED
|
@@ -1,29 +1,26 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: infrahub-testcontainers
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.6.0
|
|
4
4
|
Summary: Testcontainers instance for Infrahub to easily build integration tests
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
Author-email: info@opsmill.com
|
|
8
|
-
|
|
5
|
+
Project-URL: Homepage, https://opsmill.com
|
|
6
|
+
Project-URL: Repository, https://github.com/opsmill/infrahub
|
|
7
|
+
Author-email: OpsMill <info@opsmill.com>
|
|
8
|
+
License-Expression: Apache-2.0
|
|
9
9
|
Classifier: Intended Audience :: Developers
|
|
10
|
-
Classifier: License :: OSI Approved :: Apache Software License
|
|
11
10
|
Classifier: Programming Language :: Python :: 3
|
|
12
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
13
11
|
Classifier: Programming Language :: Python :: 3.10
|
|
14
12
|
Classifier: Programming Language :: Python :: 3.11
|
|
15
13
|
Classifier: Programming Language :: Python :: 3.12
|
|
16
14
|
Classifier: Programming Language :: Python :: 3.13
|
|
17
|
-
|
|
18
|
-
Requires-
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
16
|
+
Requires-Python: >=3.10
|
|
17
|
+
Requires-Dist: httpx<0.28
|
|
18
|
+
Requires-Dist: prefect-client==3.5.0
|
|
19
19
|
Requires-Dist: psutil
|
|
20
|
-
Requires-Dist: pydantic
|
|
20
|
+
Requires-Dist: pydantic<3,>=2.10.6
|
|
21
21
|
Requires-Dist: pytest
|
|
22
|
-
Requires-Dist: testcontainers
|
|
23
|
-
Project-URL: Homepage, https://opsmill.com
|
|
24
|
-
Project-URL: Repository, https://github.com/opsmill/infrahub
|
|
22
|
+
Requires-Dist: testcontainers<4.9,>=4.8
|
|
25
23
|
Description-Content-Type: text/markdown
|
|
26
24
|
|
|
27
25
|
|
|
28
26
|
# Infrahub Testcontainers
|
|
29
|
-
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
infrahub_testcontainers/__init__.py,sha256=oPpmesGgYBSdKTg1L37FGwYBeao1EHury5SJGul-CT8,216
|
|
2
2
|
infrahub_testcontainers/constants.py,sha256=mZ4hLvcf4rKk9wC7EId4MQxAY0sk4V99deB04N0J2bg,85
|
|
3
|
-
infrahub_testcontainers/container.py,sha256=
|
|
4
|
-
infrahub_testcontainers/docker-compose-cluster.test.yml,sha256=
|
|
5
|
-
infrahub_testcontainers/docker-compose.test.yml,sha256=
|
|
3
|
+
infrahub_testcontainers/container.py,sha256=sQyyONsTrJufE-FD8_lTnHwxHm18k61VGG9vQIiaSwc,25346
|
|
4
|
+
infrahub_testcontainers/docker-compose-cluster.test.yml,sha256=r1InyFOb4AF9-WCBJh2KI4vwq_SiCHKagjgUF4rOJFs,15111
|
|
5
|
+
infrahub_testcontainers/docker-compose.test.yml,sha256=NGh2ZRgHHHblfz0IqsDaF-3DQZobZrRaYQm-mTMnHlc,11509
|
|
6
6
|
infrahub_testcontainers/haproxy.cfg,sha256=QUkG2Xu-hKoknPOeYKAkBT_xJH6U9CfIS0DTMFZJsnk,1305
|
|
7
7
|
infrahub_testcontainers/helpers.py,sha256=7Cat-Q4bcblg5oLvMW1lwMZ7fxxc5Ba9Q2pvATNcR-A,4883
|
|
8
8
|
infrahub_testcontainers/host.py,sha256=Z4_gGoGKKeM_HGVS7SdYL1FTNGyLBk8wzicdSKHpfmM,1486
|
|
@@ -11,7 +11,7 @@ infrahub_testcontainers/models.py,sha256=hT7WEX2o7gxTFPE9uhtP5yigKgP5YSsy2c3tFB-
|
|
|
11
11
|
infrahub_testcontainers/performance_test.py,sha256=_nf7Uk15mHwqpN4y7XUfI4JI54-UaXW-Yu4uwMIx21w,6185
|
|
12
12
|
infrahub_testcontainers/plugin.py,sha256=I3RuZQ0dARyKHuqCf0y1Yj731P2Mwf3BJUehRJKeWrs,5645
|
|
13
13
|
infrahub_testcontainers/prometheus.yml,sha256=610xQEyj3xuVJMzPkC4m1fRnCrjGpiRBrXA2ytCLa54,599
|
|
14
|
-
infrahub_testcontainers-1.
|
|
15
|
-
infrahub_testcontainers-1.
|
|
16
|
-
infrahub_testcontainers-1.
|
|
17
|
-
infrahub_testcontainers-1.
|
|
14
|
+
infrahub_testcontainers-1.6.0.dist-info/METADATA,sha256=gFzWOEAjcgY-ADloge_saxu_TeP7JrEAobEGg5_qSDc,944
|
|
15
|
+
infrahub_testcontainers-1.6.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
16
|
+
infrahub_testcontainers-1.6.0.dist-info/entry_points.txt,sha256=uHwc-_eS-K8pDJG7czSOhx3kt6cDswqyDiUJc84K0C8,77
|
|
17
|
+
infrahub_testcontainers-1.6.0.dist-info/RECORD,,
|