infrahub-testcontainers 1.4.9__tar.gz → 1.4.11__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 (16) hide show
  1. {infrahub_testcontainers-1.4.9 → infrahub_testcontainers-1.4.11}/PKG-INFO +1 -1
  2. {infrahub_testcontainers-1.4.9 → infrahub_testcontainers-1.4.11}/infrahub_testcontainers/container.py +1 -1
  3. {infrahub_testcontainers-1.4.9 → infrahub_testcontainers-1.4.11}/infrahub_testcontainers/docker-compose-cluster.test.yml +1 -1
  4. {infrahub_testcontainers-1.4.9 → infrahub_testcontainers-1.4.11}/infrahub_testcontainers/docker-compose.test.yml +1 -1
  5. {infrahub_testcontainers-1.4.9 → infrahub_testcontainers-1.4.11}/pyproject.toml +2 -2
  6. {infrahub_testcontainers-1.4.9 → infrahub_testcontainers-1.4.11}/README.md +0 -0
  7. {infrahub_testcontainers-1.4.9 → infrahub_testcontainers-1.4.11}/infrahub_testcontainers/__init__.py +0 -0
  8. {infrahub_testcontainers-1.4.9 → infrahub_testcontainers-1.4.11}/infrahub_testcontainers/constants.py +0 -0
  9. {infrahub_testcontainers-1.4.9 → infrahub_testcontainers-1.4.11}/infrahub_testcontainers/haproxy.cfg +0 -0
  10. {infrahub_testcontainers-1.4.9 → infrahub_testcontainers-1.4.11}/infrahub_testcontainers/helpers.py +0 -0
  11. {infrahub_testcontainers-1.4.9 → infrahub_testcontainers-1.4.11}/infrahub_testcontainers/host.py +0 -0
  12. {infrahub_testcontainers-1.4.9 → infrahub_testcontainers-1.4.11}/infrahub_testcontainers/measurements.py +0 -0
  13. {infrahub_testcontainers-1.4.9 → infrahub_testcontainers-1.4.11}/infrahub_testcontainers/models.py +0 -0
  14. {infrahub_testcontainers-1.4.9 → infrahub_testcontainers-1.4.11}/infrahub_testcontainers/performance_test.py +0 -0
  15. {infrahub_testcontainers-1.4.9 → infrahub_testcontainers-1.4.11}/infrahub_testcontainers/plugin.py +0 -0
  16. {infrahub_testcontainers-1.4.9 → infrahub_testcontainers-1.4.11}/infrahub_testcontainers/prometheus.yml +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: infrahub-testcontainers
3
- Version: 1.4.9
3
+ Version: 1.4.11
4
4
  Summary: Testcontainers instance for Infrahub to easily build integration tests
5
5
  License: Apache-2.0
6
6
  Author: OpsMill
@@ -29,7 +29,7 @@ INFRAHUB_SERVICES: dict[str, ContainerService] = {
29
29
 
30
30
  PROJECT_ENV_VARIABLES: dict[str, str] = {
31
31
  "MESSAGE_QUEUE_DOCKER_IMAGE": "rabbitmq:3.13.7-management",
32
- "CACHE_DOCKER_IMAGE": "redis:7.2.4",
32
+ "CACHE_DOCKER_IMAGE": "redis:7.2.11",
33
33
  "INFRAHUB_TESTING_DOCKER_IMAGE": "registry.opsmill.io/opsmill/infrahub",
34
34
  "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
35
35
  "INFRAHUB_TESTING_IMAGE_VERSION": infrahub_version,
@@ -37,7 +37,7 @@ services:
37
37
  - ${INFRAHUB_TESTING_MESSAGE_QUEUE_PORT:-0}:15692
38
38
 
39
39
  cache:
40
- image: ${CACHE_DOCKER_IMAGE:-redis:7.2.4}
40
+ image: ${CACHE_DOCKER_IMAGE:-redis:7.2.11}
41
41
  restart: unless-stopped
42
42
  healthcheck:
43
43
  test: ["CMD-SHELL", "redis-cli ping | grep PONG"]
@@ -20,7 +20,7 @@ services:
20
20
  - ${INFRAHUB_TESTING_MESSAGE_QUEUE_PORT:-0}:15692
21
21
 
22
22
  cache:
23
- image: ${CACHE_DOCKER_IMAGE:-redis:7.2.4}
23
+ image: ${CACHE_DOCKER_IMAGE:-redis:7.2.11}
24
24
  restart: unless-stopped
25
25
  healthcheck:
26
26
  test: ["CMD-SHELL", "redis-cli ping | grep PONG"]
@@ -1,11 +1,11 @@
1
1
  [project]
2
2
  name = "infrahub-testcontainers"
3
- version = "1.4.9"
3
+ version = "1.4.11"
4
4
  requires-python = ">=3.9"
5
5
 
6
6
  [tool.poetry]
7
7
  name = "infrahub-testcontainers"
8
- version = "1.4.9"
8
+ version = "1.4.11"
9
9
  description = "Testcontainers instance for Infrahub to easily build integration tests"
10
10
  authors = ["OpsMill <info@opsmill.com>"]
11
11
  readme = "README.md"