robotframework-schemathesislibrary 0.1.0__tar.gz → 0.5.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.

Potentially problematic release.


This version of robotframework-schemathesislibrary might be problematic. Click here for more details.

Files changed (11) hide show
  1. {robotframework_schemathesislibrary-0.1.0/src/robotframework_schemathesislibrary.egg-info → robotframework_schemathesislibrary-0.5.0}/PKG-INFO +6 -1
  2. {robotframework_schemathesislibrary-0.1.0 → robotframework_schemathesislibrary-0.5.0}/README.md +5 -0
  3. {robotframework_schemathesislibrary-0.1.0 → robotframework_schemathesislibrary-0.5.0}/pyproject.toml +4 -1
  4. {robotframework_schemathesislibrary-0.1.0 → robotframework_schemathesislibrary-0.5.0}/src/SchemathesisLibrary/__init__.py +1 -0
  5. {robotframework_schemathesislibrary-0.1.0 → robotframework_schemathesislibrary-0.5.0/src/robotframework_schemathesislibrary.egg-info}/PKG-INFO +6 -1
  6. {robotframework_schemathesislibrary-0.1.0 → robotframework_schemathesislibrary-0.5.0}/LICENSE +0 -0
  7. {robotframework_schemathesislibrary-0.1.0 → robotframework_schemathesislibrary-0.5.0}/setup.cfg +0 -0
  8. {robotframework_schemathesislibrary-0.1.0 → robotframework_schemathesislibrary-0.5.0}/src/robotframework_schemathesislibrary.egg-info/SOURCES.txt +0 -0
  9. {robotframework_schemathesislibrary-0.1.0 → robotframework_schemathesislibrary-0.5.0}/src/robotframework_schemathesislibrary.egg-info/dependency_links.txt +0 -0
  10. {robotframework_schemathesislibrary-0.1.0 → robotframework_schemathesislibrary-0.5.0}/src/robotframework_schemathesislibrary.egg-info/requires.txt +0 -0
  11. {robotframework_schemathesislibrary-0.1.0 → robotframework_schemathesislibrary-0.5.0}/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: 0.1.0
3
+ Version: 0.5.0
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
@@ -35,6 +35,11 @@ or any package manager that supports PyPi
35
35
  pip install robotframework-schemathesislibrary
36
36
  ```
37
37
 
38
+ # Keyword documentation
39
+ See
40
+ [keyword documentation](https://aaltat.github.io/robotframework-schemathesis/SchemathesisLibrary.html)
41
+ for more details.
42
+
38
43
  # Usage
39
44
  Test are automatically generated based your API specification, SchemathesisLibrary uses
40
45
  DataDriver internally, but you need to create template suite, so that DataDriver is able
@@ -19,6 +19,11 @@ or any package manager that supports PyPi
19
19
  pip install robotframework-schemathesislibrary
20
20
  ```
21
21
 
22
+ # Keyword documentation
23
+ See
24
+ [keyword documentation](https://aaltat.github.io/robotframework-schemathesis/SchemathesisLibrary.html)
25
+ for more details.
26
+
22
27
  # Usage
23
28
  Test are automatically generated based your API specification, SchemathesisLibrary uses
24
29
  DataDriver internally, but you need to create template suite, so that DataDriver is able
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "robotframework-schemathesislibrary"
3
- version = "0.1.0"
3
+ version = "0.5.0"
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" },
@@ -27,6 +27,9 @@ dev = [
27
27
  "ruff==0.12.1",
28
28
  ]
29
29
 
30
+ [tool.semantic_release.settings]
31
+ allow_zero_version = true
32
+
30
33
  [tool.robotidy]
31
34
  overwrite = true
32
35
  diff = false
@@ -80,6 +80,7 @@ class SchemathesisLibrary(DynamicCore):
80
80
  ROBOT_LIBRARY_VERSION = __version__
81
81
  ROBOT_LISTENER_API_VERSION = 3
82
82
  ROBOT_LIBRARY_SCOPE = "TEST SUITE"
83
+ """SchemathesisLibrary is a library for validating API cases using Schemathesis."""
83
84
 
84
85
  def __init__(
85
86
  self,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: robotframework-schemathesislibrary
3
- Version: 0.1.0
3
+ Version: 0.5.0
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
@@ -35,6 +35,11 @@ or any package manager that supports PyPi
35
35
  pip install robotframework-schemathesislibrary
36
36
  ```
37
37
 
38
+ # Keyword documentation
39
+ See
40
+ [keyword documentation](https://aaltat.github.io/robotframework-schemathesis/SchemathesisLibrary.html)
41
+ for more details.
42
+
38
43
  # Usage
39
44
  Test are automatically generated based your API specification, SchemathesisLibrary uses
40
45
  DataDriver internally, but you need to create template suite, so that DataDriver is able