robotframework-testcontainers 0.2.0__tar.gz → 0.2.1__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.
- {robotframework_testcontainers-0.2.0 → robotframework_testcontainers-0.2.1}/PKG-INFO +2 -2
- {robotframework_testcontainers-0.2.0 → robotframework_testcontainers-0.2.1}/pyproject.toml +2 -2
- {robotframework_testcontainers-0.2.0 → robotframework_testcontainers-0.2.1}/src/TestcontainersLibrary/library.py +1 -1
- {robotframework_testcontainers-0.2.0 → robotframework_testcontainers-0.2.1}/README.md +0 -0
- {robotframework_testcontainers-0.2.0 → robotframework_testcontainers-0.2.1}/src/TestcontainersLibrary/__init__.py +0 -0
- {robotframework_testcontainers-0.2.0 → robotframework_testcontainers-0.2.1}/src/TestcontainersLibrary/py.typed +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: robotframework-testcontainers
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.1
|
|
4
4
|
Summary: Robot Framework keywords for Testcontainers.
|
|
5
5
|
Keywords: robotframework,testing,test,automation,container,testcontainers,docker
|
|
6
6
|
Author: Andreas Finkler
|
|
@@ -11,7 +11,7 @@ Classifier: Framework :: Robot Framework :: Library
|
|
|
11
11
|
Classifier: Topic :: Software Development :: Testing
|
|
12
12
|
Classifier: Topic :: Software Development :: Testing :: Mocking
|
|
13
13
|
Requires-Dist: robotframework>=7.3.2
|
|
14
|
-
Requires-Dist: testcontainers[generic]>=4.
|
|
14
|
+
Requires-Dist: testcontainers[generic]>=4.15.0
|
|
15
15
|
Requires-Python: >=3.10
|
|
16
16
|
Project-URL: Documentation, https://dudenr33.github.io/robotframework-testcontainers/
|
|
17
17
|
Project-URL: Repository, https://github.com/DudeNr33/robotframework-testcontainers
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "robotframework-testcontainers"
|
|
3
|
-
version = "0.2.
|
|
3
|
+
version = "0.2.1"
|
|
4
4
|
description = "Robot Framework keywords for Testcontainers."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
authors = [{ name = "Andreas Finkler", email = "andi.finkler@gmail.com" }]
|
|
@@ -16,7 +16,7 @@ keywords = [
|
|
|
16
16
|
"docker",
|
|
17
17
|
]
|
|
18
18
|
requires-python = ">=3.10"
|
|
19
|
-
dependencies = ["robotframework>=7.3.2", "testcontainers[generic]>=4.
|
|
19
|
+
dependencies = ["robotframework>=7.3.2", "testcontainers[generic]>=4.15.0"]
|
|
20
20
|
classifiers = [
|
|
21
21
|
"Framework :: Robot Framework",
|
|
22
22
|
"Framework :: Robot Framework :: Library",
|
|
@@ -7,7 +7,7 @@ from robot.api.deco import keyword, library
|
|
|
7
7
|
from testcontainers.core.container import DockerContainer
|
|
8
8
|
from testcontainers.core.network import Network
|
|
9
9
|
from testcontainers.core.wait_strategies import HttpWaitStrategy, LogMessageWaitStrategy
|
|
10
|
-
from testcontainers.generic
|
|
10
|
+
from testcontainers.community.generic import ServerContainer
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
@library(listener="SELF")
|
|
File without changes
|
|
File without changes
|
|
File without changes
|