robotframework-schemathesislibrary 2.3.0__tar.gz → 2.3.2__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 (13) hide show
  1. {robotframework_schemathesislibrary-2.3.0/src/robotframework_schemathesislibrary.egg-info → robotframework_schemathesislibrary-2.3.2}/PKG-INFO +3 -3
  2. {robotframework_schemathesislibrary-2.3.0 → robotframework_schemathesislibrary-2.3.2}/pyproject.toml +12 -12
  3. {robotframework_schemathesislibrary-2.3.0 → robotframework_schemathesislibrary-2.3.2}/src/SchemathesisLibrary/__init__.py +3 -3
  4. {robotframework_schemathesislibrary-2.3.0 → robotframework_schemathesislibrary-2.3.2/src/robotframework_schemathesislibrary.egg-info}/PKG-INFO +3 -3
  5. robotframework_schemathesislibrary-2.3.2/src/robotframework_schemathesislibrary.egg-info/requires.txt +4 -0
  6. robotframework_schemathesislibrary-2.3.0/src/robotframework_schemathesislibrary.egg-info/requires.txt +0 -4
  7. {robotframework_schemathesislibrary-2.3.0 → robotframework_schemathesislibrary-2.3.2}/LICENSE +0 -0
  8. {robotframework_schemathesislibrary-2.3.0 → robotframework_schemathesislibrary-2.3.2}/README.md +0 -0
  9. {robotframework_schemathesislibrary-2.3.0 → robotframework_schemathesislibrary-2.3.2}/setup.cfg +0 -0
  10. {robotframework_schemathesislibrary-2.3.0 → robotframework_schemathesislibrary-2.3.2}/src/SchemathesisLibrary/schemathesisreader.py +0 -0
  11. {robotframework_schemathesislibrary-2.3.0 → robotframework_schemathesislibrary-2.3.2}/src/robotframework_schemathesislibrary.egg-info/SOURCES.txt +0 -0
  12. {robotframework_schemathesislibrary-2.3.0 → robotframework_schemathesislibrary-2.3.2}/src/robotframework_schemathesislibrary.egg-info/dependency_links.txt +0 -0
  13. {robotframework_schemathesislibrary-2.3.0 → robotframework_schemathesislibrary-2.3.2}/src/robotframework_schemathesislibrary.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: robotframework-schemathesislibrary
3
- Version: 2.3.0
3
+ Version: 2.3.2
4
4
  Summary: Robot Framework SchemathesisLibrary to automatically create test cases from API specifications.
5
5
  Author-email: Tatu Aalto <aalto.tatu@gmail.com>
6
6
  License-Expression: Apache-2.0
@@ -10,8 +10,8 @@ Description-Content-Type: text/markdown
10
10
  License-File: LICENSE
11
11
  Requires-Dist: robotframework>=7.2.2
12
12
  Requires-Dist: robotframework-datadriver>=1.11.2
13
- Requires-Dist: robotframework-pythonlibcore>=4.4.1
14
- Requires-Dist: schemathesis>=4.7.0
13
+ Requires-Dist: robotframework-pythonlibcore>=4.5.0
14
+ Requires-Dist: schemathesis>=4.17.0
15
15
  Dynamic: license-file
16
16
 
17
17
  # Robot Framework SchemathesisLibrary
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "robotframework-schemathesislibrary"
3
- version = "2.3.0"
3
+ version = "2.3.2"
4
4
  description = "Robot Framework SchemathesisLibrary to automatically create test cases from API specifications."
5
5
  authors = [
6
6
  { name="Tatu Aalto", email="aalto.tatu@gmail.com" },
@@ -12,22 +12,22 @@ keywords = ["Robot Framework", "Schemathesis", "API Testing", "Test Automation"]
12
12
  dependencies = [
13
13
  "robotframework>=7.2.2",
14
14
  "robotframework-datadriver>=1.11.2",
15
- "robotframework-pythonlibcore>=4.4.1",
16
- "schemathesis>=4.7.0",
15
+ "robotframework-pythonlibcore>=4.5.0",
16
+ "schemathesis>=4.17.0",
17
17
  ]
18
18
 
19
19
  [dependency-groups]
20
20
  dev = [
21
- "coverage>=7.13.1",
22
- "fastapi[standard]>=0.128.0",
23
- "invoke>=2.2.1",
24
- "mypy>=1.19.1",
25
- "pytest>=9.0.1",
26
- "requests>=2.32.5",
21
+ "coverage>=7.13.5",
22
+ "fastapi[standard]>=0.136.1",
23
+ "invoke>=3.0.3",
24
+ "mypy>=1.20.2",
25
+ "pytest>=9.0.3",
26
+ "requests>=2.33.1",
27
27
  "robotframework-requests>=0.9.7",
28
- "robotframework-robocop>=7.2.0",
29
- "ruff==0.15.6",
30
- "types-requests>=2.32.4.20250913",
28
+ "robotframework-robocop>=8.2.7",
29
+ "ruff==0.15.12",
30
+ "types-requests>=2.33.0.20260503",
31
31
  ]
32
32
 
33
33
  [tool.semantic_release.settings]
@@ -31,7 +31,7 @@ from .schemathesisreader import Options, SchemathesisReader
31
31
  if TYPE_CHECKING:
32
32
  from pathlib import Path
33
33
 
34
- __version__ = "2.3.0"
34
+ __version__ = "2.3.2"
35
35
 
36
36
 
37
37
  class SchemathesisLibrary(DynamicCore):
@@ -321,7 +321,7 @@ class SchemathesisLibrary(DynamicCore):
321
321
  case.validate_response(response=response, transport_kwargs=transport_kwargs)
322
322
  self.info("Response validation passed.")
323
323
 
324
- @keyword
324
+ @keyword(name="As cURL")
325
325
  def as_curl(self, case: Case) -> str:
326
326
  """Convert a Schemathesis case to a cURL command.
327
327
 
@@ -331,7 +331,7 @@ class SchemathesisLibrary(DynamicCore):
331
331
  Returns a string containing the cURL command that can be used to execute the same request as the case.
332
332
 
333
333
  Example:
334
- | ${curl_command} = `As Curl` ${case}
334
+ | ${curl_command} = `As cURL` ${case}
335
335
  | Log ${curl_command}
336
336
  """
337
337
  self.info(f"Converting case to cURL: {case.path} | {case.method} | {case.path_parameters}")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: robotframework-schemathesislibrary
3
- Version: 2.3.0
3
+ Version: 2.3.2
4
4
  Summary: Robot Framework SchemathesisLibrary to automatically create test cases from API specifications.
5
5
  Author-email: Tatu Aalto <aalto.tatu@gmail.com>
6
6
  License-Expression: Apache-2.0
@@ -10,8 +10,8 @@ Description-Content-Type: text/markdown
10
10
  License-File: LICENSE
11
11
  Requires-Dist: robotframework>=7.2.2
12
12
  Requires-Dist: robotframework-datadriver>=1.11.2
13
- Requires-Dist: robotframework-pythonlibcore>=4.4.1
14
- Requires-Dist: schemathesis>=4.7.0
13
+ Requires-Dist: robotframework-pythonlibcore>=4.5.0
14
+ Requires-Dist: schemathesis>=4.17.0
15
15
  Dynamic: license-file
16
16
 
17
17
  # Robot Framework SchemathesisLibrary
@@ -0,0 +1,4 @@
1
+ robotframework>=7.2.2
2
+ robotframework-datadriver>=1.11.2
3
+ robotframework-pythonlibcore>=4.5.0
4
+ schemathesis>=4.17.0
@@ -1,4 +0,0 @@
1
- robotframework>=7.2.2
2
- robotframework-datadriver>=1.11.2
3
- robotframework-pythonlibcore>=4.4.1
4
- schemathesis>=4.7.0