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.
@@ -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: /usr/local/bin/httpx http://localhost:4200/api/health || exit 1
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: /usr/local/bin/httpx http://localhost:4200/api/health || exit 1
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
@@ -1,29 +1,26 @@
1
- Metadata-Version: 2.3
1
+ Metadata-Version: 2.4
2
2
  Name: infrahub-testcontainers
3
- Version: 1.5.5
3
+ Version: 1.6.0
4
4
  Summary: Testcontainers instance for Infrahub to easily build integration tests
5
- License: Apache-2.0
6
- Author: OpsMill
7
- Author-email: info@opsmill.com
8
- Requires-Python: >=3.9
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
- Requires-Dist: httpx (>=0.28.1,<0.29.0)
18
- Requires-Dist: prefect-client (==3.4.23)
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 (>=2.10.6,<3.0.0)
20
+ Requires-Dist: pydantic<3,>=2.10.6
21
21
  Requires-Dist: pytest
22
- Requires-Dist: testcontainers (>=4.8,<4.9)
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=pjre803SgFegb-LqvIP21OEJwVifE7C3PSkTVRTKfEY,25342
4
- infrahub_testcontainers/docker-compose-cluster.test.yml,sha256=WFWQLDoeS0E5MfjlOejfwaFMNu8ejsJ6ay7iuLonlCc,15108
5
- infrahub_testcontainers/docker-compose.test.yml,sha256=BSZ8C3tEg7g6a9Qm4TcCIqxgX1RkqSjfF8y8fcs3SZ0,11506
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.5.5.dist-info/METADATA,sha256=CeRzN85uGPK08ZDcmu_SksStDLJ91Psd43TMpo7wSJg,1029
15
- infrahub_testcontainers-1.5.5.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
16
- infrahub_testcontainers-1.5.5.dist-info/entry_points.txt,sha256=gHOERdtVE0P8dYz6FHkn2KplpbXvCDJQnuWg_IP0-qQ,76
17
- infrahub_testcontainers-1.5.5.dist-info/RECORD,,
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,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 2.1.3
2
+ Generator: hatchling 1.28.0
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
@@ -0,0 +1,2 @@
1
+ [pytest11]
2
+ pytest-infrahub-performance-test = infrahub_testcontainers.plugin
@@ -1,3 +0,0 @@
1
- [pytest11]
2
- pytest-infrahub-performance-test=infrahub_testcontainers.plugin
3
-