pytest-testcontainers 0.1.0__tar.gz → 0.2.0__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 (36) hide show
  1. {pytest_testcontainers-0.1.0 → pytest_testcontainers-0.2.0}/CHANGELOG.md +12 -0
  2. {pytest_testcontainers-0.1.0 → pytest_testcontainers-0.2.0}/PKG-INFO +6 -5
  3. {pytest_testcontainers-0.1.0 → pytest_testcontainers-0.2.0}/README.md +3 -3
  4. {pytest_testcontainers-0.1.0 → pytest_testcontainers-0.2.0}/pyproject.toml +3 -2
  5. {pytest_testcontainers-0.1.0 → pytest_testcontainers-0.2.0}/.gitignore +0 -0
  6. {pytest_testcontainers-0.1.0 → pytest_testcontainers-0.2.0}/LICENSE +0 -0
  7. {pytest_testcontainers-0.1.0 → pytest_testcontainers-0.2.0}/src/pytest_testcontainers/__init__.py +0 -0
  8. {pytest_testcontainers-0.1.0 → pytest_testcontainers-0.2.0}/src/pytest_testcontainers/_internal/__init__.py +0 -0
  9. {pytest_testcontainers-0.1.0 → pytest_testcontainers-0.2.0}/src/pytest_testcontainers/_internal/clean_session_admin.py +0 -0
  10. {pytest_testcontainers-0.1.0 → pytest_testcontainers-0.2.0}/src/pytest_testcontainers/_internal/conn_info.py +0 -0
  11. {pytest_testcontainers-0.1.0 → pytest_testcontainers-0.2.0}/src/pytest_testcontainers/_internal/docker_health.py +0 -0
  12. {pytest_testcontainers-0.1.0 → pytest_testcontainers-0.2.0}/src/pytest_testcontainers/_internal/port_resolver.py +0 -0
  13. {pytest_testcontainers-0.1.0 → pytest_testcontainers-0.2.0}/src/pytest_testcontainers/containers.py +0 -0
  14. {pytest_testcontainers-0.1.0 → pytest_testcontainers-0.2.0}/src/pytest_testcontainers/errors.py +0 -0
  15. {pytest_testcontainers-0.1.0 → pytest_testcontainers-0.2.0}/src/pytest_testcontainers/fixtures.py +0 -0
  16. {pytest_testcontainers-0.1.0 → pytest_testcontainers-0.2.0}/src/pytest_testcontainers/makers.py +0 -0
  17. {pytest_testcontainers-0.1.0 → pytest_testcontainers-0.2.0}/src/pytest_testcontainers/plugin.py +0 -0
  18. {pytest_testcontainers-0.1.0 → pytest_testcontainers-0.2.0}/src/pytest_testcontainers/reuse.py +0 -0
  19. {pytest_testcontainers-0.1.0 → pytest_testcontainers-0.2.0}/tests/conftest.py +0 -0
  20. {pytest_testcontainers-0.1.0 → pytest_testcontainers-0.2.0}/tests/test_disabled.py +0 -0
  21. {pytest_testcontainers-0.1.0 → pytest_testcontainers-0.2.0}/tests/test_disabled_fixture.py +0 -0
  22. {pytest_testcontainers-0.1.0 → pytest_testcontainers-0.2.0}/tests/test_docker_not_running.py +0 -0
  23. {pytest_testcontainers-0.1.0 → pytest_testcontainers-0.2.0}/tests/test_errors.py +0 -0
  24. {pytest_testcontainers-0.1.0 → pytest_testcontainers-0.2.0}/tests/test_fixtures_clean_session_mongo.py +0 -0
  25. {pytest_testcontainers-0.1.0 → pytest_testcontainers-0.2.0}/tests/test_fixtures_clean_session_psql.py +0 -0
  26. {pytest_testcontainers-0.1.0 → pytest_testcontainers-0.2.0}/tests/test_fixtures_clean_session_redis.py +0 -0
  27. {pytest_testcontainers-0.1.0 → pytest_testcontainers-0.2.0}/tests/test_fixtures_session.py +0 -0
  28. {pytest_testcontainers-0.1.0 → pytest_testcontainers-0.2.0}/tests/test_makers_generic.py +0 -0
  29. {pytest_testcontainers-0.1.0 → pytest_testcontainers-0.2.0}/tests/test_makers_mongo.py +0 -0
  30. {pytest_testcontainers-0.1.0 → pytest_testcontainers-0.2.0}/tests/test_makers_mysql.py +0 -0
  31. {pytest_testcontainers-0.1.0 → pytest_testcontainers-0.2.0}/tests/test_makers_no_docker.py +0 -0
  32. {pytest_testcontainers-0.1.0 → pytest_testcontainers-0.2.0}/tests/test_makers_postgres.py +0 -0
  33. {pytest_testcontainers-0.1.0 → pytest_testcontainers-0.2.0}/tests/test_makers_redis.py +0 -0
  34. {pytest_testcontainers-0.1.0 → pytest_testcontainers-0.2.0}/tests/test_port_resolver.py +0 -0
  35. {pytest_testcontainers-0.1.0 → pytest_testcontainers-0.2.0}/tests/test_reuse.py +0 -0
  36. {pytest_testcontainers-0.1.0 → pytest_testcontainers-0.2.0}/tests/test_reuse_mode.py +0 -0
@@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.2.0] - 2026-06-18
11
+
12
+ ### Added
13
+
14
+ - Support for pytest 9.x. The CI `unit-tests` job now runs a 4 Python × 3
15
+ pytest (7/8/9) matrix, and a new `noxfile.py` runs the same pytest-version
16
+ matrix locally (`uv run nox`).
17
+
18
+ ### Changed
19
+
20
+ - Widened the `pytest` dependency cap from `<9` to `<10`.
21
+
10
22
  ## [0.1.0] - 2026-05-08
11
23
 
12
24
  Initial release.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pytest-testcontainers
3
- Version: 0.1.0
3
+ Version: 0.2.0
4
4
  Summary: Named pytest fixtures and a maker convention on top of testcontainers-python.
5
5
  Project-URL: Homepage, https://github.com/iplweb/pytest-testcontainers
6
6
  Project-URL: Repository, https://github.com/iplweb/pytest-testcontainers
@@ -45,7 +45,7 @@ Classifier: Topic :: Software Development :: Testing
45
45
  Classifier: Topic :: Software Development :: Testing :: Mocking
46
46
  Requires-Python: >=3.10
47
47
  Requires-Dist: docker>=6.1
48
- Requires-Dist: pytest<9,>=7.4
48
+ Requires-Dist: pytest<10,>=7.4
49
49
  Requires-Dist: testcontainers<5,>=4.7
50
50
  Requires-Dist: tomli>=2; python_version < '3.11'
51
51
  Provides-Extra: clients
@@ -59,6 +59,7 @@ Requires-Dist: pymysql>=1.1; extra == 'clients-mysql'
59
59
  Provides-Extra: clients-postgres
60
60
  Requires-Dist: psycopg[binary]>=3.1; extra == 'clients-postgres'
61
61
  Provides-Extra: dev
62
+ Requires-Dist: nox; extra == 'dev'
62
63
  Requires-Dist: pika; extra == 'dev'
63
64
  Requires-Dist: pre-commit; extra == 'dev'
64
65
  Requires-Dist: psycopg[binary]>=3.1; extra == 'dev'
@@ -578,9 +579,9 @@ default we develop against.
578
579
 
579
580
  ### pytest
580
581
 
581
- | pytest | 7.x | 8.x |
582
- |--------|:---:|:---:|
583
- | | ✓ | ✓ |
582
+ | pytest | 7.x | 8.x | 9.x |
583
+ |--------|:---:|:---:|:---:|
584
+ | | ✓ | ✓ | ✓ |
584
585
 
585
586
  Tested separately in CI; floor is `pytest>=7.4`.
586
587
 
@@ -507,9 +507,9 @@ default we develop against.
507
507
 
508
508
  ### pytest
509
509
 
510
- | pytest | 7.x | 8.x |
511
- |--------|:---:|:---:|
512
- | | ✓ | ✓ |
510
+ | pytest | 7.x | 8.x | 9.x |
511
+ |--------|:---:|:---:|:---:|
512
+ | | ✓ | ✓ | ✓ |
513
513
 
514
514
  Tested separately in CI; floor is `pytest>=7.4`.
515
515
 
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "pytest-testcontainers"
7
- version = "0.1.0"
7
+ version = "0.2.0"
8
8
  description = "Named pytest fixtures and a maker convention on top of testcontainers-python."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
@@ -41,7 +41,7 @@ classifiers = [
41
41
  "Topic :: Software Development :: Testing :: Mocking",
42
42
  ]
43
43
  dependencies = [
44
- "pytest >=7.4,<9",
44
+ "pytest >=7.4,<10",
45
45
  "testcontainers >=4.7,<5",
46
46
  "docker >=6.1",
47
47
  "tomli >=2 ; python_version < '3.11'",
@@ -58,6 +58,7 @@ clients = [
58
58
  ]
59
59
  dev = [
60
60
  "pytest-xdist",
61
+ "nox",
61
62
  "ruff",
62
63
  "pre-commit",
63
64
  "psycopg[binary] >=3.1",