schemathesis 3.21.2__py3-none-any.whl → 3.22.1__py3-none-any.whl
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.
- schemathesis/__init__.py +1 -1
- schemathesis/_compat.py +2 -18
- schemathesis/_dependency_versions.py +1 -6
- schemathesis/_hypothesis.py +15 -12
- schemathesis/_lazy_import.py +3 -2
- schemathesis/_xml.py +12 -11
- schemathesis/auths.py +88 -81
- schemathesis/checks.py +4 -4
- schemathesis/cli/__init__.py +202 -171
- schemathesis/cli/callbacks.py +29 -32
- schemathesis/cli/cassettes.py +25 -25
- schemathesis/cli/context.py +18 -12
- schemathesis/cli/junitxml.py +2 -2
- schemathesis/cli/options.py +10 -11
- schemathesis/cli/output/default.py +64 -34
- schemathesis/code_samples.py +10 -10
- schemathesis/constants.py +1 -1
- schemathesis/contrib/unique_data.py +2 -2
- schemathesis/exceptions.py +55 -42
- schemathesis/extra/_aiohttp.py +2 -2
- schemathesis/extra/_flask.py +2 -2
- schemathesis/extra/_server.py +3 -2
- schemathesis/extra/pytest_plugin.py +10 -10
- schemathesis/failures.py +16 -16
- schemathesis/filters.py +40 -41
- schemathesis/fixups/__init__.py +4 -3
- schemathesis/fixups/fast_api.py +5 -4
- schemathesis/generation/__init__.py +16 -4
- schemathesis/hooks.py +25 -25
- schemathesis/internal/jsonschema.py +4 -3
- schemathesis/internal/transformation.py +3 -2
- schemathesis/lazy.py +39 -31
- schemathesis/loaders.py +8 -8
- schemathesis/models.py +128 -126
- schemathesis/parameters.py +6 -5
- schemathesis/runner/__init__.py +107 -81
- schemathesis/runner/events.py +37 -26
- schemathesis/runner/impl/core.py +86 -81
- schemathesis/runner/impl/solo.py +19 -15
- schemathesis/runner/impl/threadpool.py +40 -22
- schemathesis/runner/serialization.py +67 -40
- schemathesis/sanitization.py +18 -20
- schemathesis/schemas.py +83 -72
- schemathesis/serializers.py +39 -30
- schemathesis/service/ci.py +20 -21
- schemathesis/service/client.py +29 -9
- schemathesis/service/constants.py +1 -0
- schemathesis/service/events.py +2 -2
- schemathesis/service/hosts.py +8 -7
- schemathesis/service/metadata.py +5 -0
- schemathesis/service/models.py +22 -4
- schemathesis/service/report.py +15 -15
- schemathesis/service/serialization.py +23 -27
- schemathesis/service/usage.py +8 -7
- schemathesis/specs/graphql/loaders.py +31 -24
- schemathesis/specs/graphql/nodes.py +3 -2
- schemathesis/specs/graphql/scalars.py +26 -2
- schemathesis/specs/graphql/schemas.py +38 -34
- schemathesis/specs/openapi/_hypothesis.py +62 -44
- schemathesis/specs/openapi/checks.py +10 -10
- schemathesis/specs/openapi/converter.py +10 -9
- schemathesis/specs/openapi/definitions.py +2 -2
- schemathesis/specs/openapi/examples.py +22 -21
- schemathesis/specs/openapi/expressions/nodes.py +5 -4
- schemathesis/specs/openapi/expressions/parser.py +7 -6
- schemathesis/specs/openapi/filters.py +6 -6
- schemathesis/specs/openapi/formats.py +2 -2
- schemathesis/specs/openapi/links.py +19 -21
- schemathesis/specs/openapi/loaders.py +133 -78
- schemathesis/specs/openapi/negative/__init__.py +16 -11
- schemathesis/specs/openapi/negative/mutations.py +11 -10
- schemathesis/specs/openapi/parameters.py +20 -19
- schemathesis/specs/openapi/references.py +21 -20
- schemathesis/specs/openapi/schemas.py +97 -84
- schemathesis/specs/openapi/security.py +25 -24
- schemathesis/specs/openapi/serialization.py +20 -23
- schemathesis/specs/openapi/stateful/__init__.py +12 -11
- schemathesis/specs/openapi/stateful/links.py +7 -7
- schemathesis/specs/openapi/utils.py +4 -3
- schemathesis/specs/openapi/validation.py +3 -2
- schemathesis/stateful/__init__.py +15 -16
- schemathesis/stateful/state_machine.py +9 -9
- schemathesis/targets.py +3 -3
- schemathesis/throttling.py +2 -2
- schemathesis/transports/auth.py +2 -2
- schemathesis/transports/content_types.py +5 -0
- schemathesis/transports/headers.py +3 -2
- schemathesis/transports/responses.py +1 -1
- schemathesis/utils.py +7 -10
- {schemathesis-3.21.2.dist-info → schemathesis-3.22.1.dist-info}/METADATA +12 -13
- schemathesis-3.22.1.dist-info/RECORD +130 -0
- schemathesis-3.21.2.dist-info/RECORD +0 -130
- {schemathesis-3.21.2.dist-info → schemathesis-3.22.1.dist-info}/WHEEL +0 -0
- {schemathesis-3.21.2.dist-info → schemathesis-3.22.1.dist-info}/entry_points.txt +0 -0
- {schemathesis-3.21.2.dist-info → schemathesis-3.22.1.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: schemathesis
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.22.1
|
|
4
4
|
Summary: Property-based testing framework for Open API and GraphQL based apps
|
|
5
5
|
Project-URL: Documentation, https://schemathesis.readthedocs.io/en/stable/
|
|
6
6
|
Project-URL: Changelog, https://schemathesis.readthedocs.io/en/stable/changelog.html
|
|
@@ -11,7 +11,7 @@ Author-email: Dmitry Dygalo <dadygalo@gmail.com>
|
|
|
11
11
|
Maintainer-email: Dmitry Dygalo <dadygalo@gmail.com>
|
|
12
12
|
License-Expression: MIT
|
|
13
13
|
License-File: LICENSE
|
|
14
|
-
Keywords: graphql,hypothesis,openapi,pytest,
|
|
14
|
+
Keywords: graphql,hypothesis,openapi,pytest,testing
|
|
15
15
|
Classifier: Development Status :: 5 - Production/Stable
|
|
16
16
|
Classifier: Environment :: Console
|
|
17
17
|
Classifier: Framework :: Hypothesis
|
|
@@ -20,7 +20,6 @@ Classifier: Intended Audience :: Developers
|
|
|
20
20
|
Classifier: License :: OSI Approved :: MIT License
|
|
21
21
|
Classifier: Operating System :: OS Independent
|
|
22
22
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
23
|
-
Classifier: Programming Language :: Python :: 3.7
|
|
24
23
|
Classifier: Programming Language :: Python :: 3.8
|
|
25
24
|
Classifier: Programming Language :: Python :: 3.9
|
|
26
25
|
Classifier: Programming Language :: Python :: 3.10
|
|
@@ -28,16 +27,15 @@ Classifier: Programming Language :: Python :: 3.11
|
|
|
28
27
|
Classifier: Programming Language :: Python :: 3.12
|
|
29
28
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
30
29
|
Classifier: Topic :: Software Development :: Testing
|
|
31
|
-
Requires-Python: >=3.
|
|
30
|
+
Requires-Python: >=3.8
|
|
32
31
|
Requires-Dist: backoff<3.0,>=2.1.2
|
|
33
32
|
Requires-Dist: click<9.0,>=7.0
|
|
34
33
|
Requires-Dist: colorama<1.0,>=0.4
|
|
35
34
|
Requires-Dist: httpx<1.0,>=0.22.0
|
|
36
|
-
Requires-Dist: hypothesis-graphql<1,>=0.
|
|
37
|
-
Requires-Dist: hypothesis-jsonschema<0.
|
|
38
|
-
Requires-Dist: hypothesis<7,>=6.
|
|
39
|
-
Requires-Dist:
|
|
40
|
-
Requires-Dist: jsonschema<5.0,>=4.3.2
|
|
35
|
+
Requires-Dist: hypothesis-graphql<1,>=0.11.0
|
|
36
|
+
Requires-Dist: hypothesis-jsonschema<0.24,>=0.23
|
|
37
|
+
Requires-Dist: hypothesis<7,>=6.84.3
|
|
38
|
+
Requires-Dist: jsonschema<5.0,>=4.18.0
|
|
41
39
|
Requires-Dist: junit-xml<2.0,>=1.9
|
|
42
40
|
Requires-Dist: pyrate-limiter<3.0,>=2.10
|
|
43
41
|
Requires-Dist: pytest-subtests<0.8.0,>=0.2.1
|
|
@@ -48,7 +46,6 @@ Requires-Dist: starlette-testclient==0.2.0
|
|
|
48
46
|
Requires-Dist: starlette<1,>=0.13
|
|
49
47
|
Requires-Dist: tomli-w<2.0,>=1.0.0
|
|
50
48
|
Requires-Dist: tomli<3.0,>=2.0.1
|
|
51
|
-
Requires-Dist: typing-extensions<5,>=3.7
|
|
52
49
|
Requires-Dist: werkzeug<4,>=0.16.0
|
|
53
50
|
Requires-Dist: yarl<2.0,>=1.5
|
|
54
51
|
Provides-Extra: bench
|
|
@@ -63,8 +60,7 @@ Requires-Dist: sphinx; extra == 'docs'
|
|
|
63
60
|
Requires-Dist: sphinx-click; extra == 'docs'
|
|
64
61
|
Requires-Dist: sphinx-rtd-theme; extra == 'docs'
|
|
65
62
|
Provides-Extra: tests
|
|
66
|
-
Requires-Dist: aiohttp<4.0,>=3.
|
|
67
|
-
Requires-Dist: aiohttp<4.0,>=3.9.0b0; python_version >= '3.8' and extra == 'tests'
|
|
63
|
+
Requires-Dist: aiohttp<4.0,>=3.9.1; extra == 'tests'
|
|
68
64
|
Requires-Dist: coverage>=6; extra == 'tests'
|
|
69
65
|
Requires-Dist: fastapi>=0.86.0; extra == 'tests'
|
|
70
66
|
Requires-Dist: flask<3.0,>=2.1.1; extra == 'tests'
|
|
@@ -204,7 +200,7 @@ Add this YAML configuration to your GitHub Actions:
|
|
|
204
200
|
|
|
205
201
|
```yaml
|
|
206
202
|
api-tests:
|
|
207
|
-
runs-on: ubuntu-
|
|
203
|
+
runs-on: ubuntu-22.04
|
|
208
204
|
steps:
|
|
209
205
|
- uses: schemathesis/action@v1
|
|
210
206
|
with:
|
|
@@ -340,6 +336,9 @@ To discuss a custom support arrangement that best suits your organization, pleas
|
|
|
340
336
|
|
|
341
337
|
### Videos
|
|
342
338
|
|
|
339
|
+
- [API Fuzzing: What it is and why you should use it](https://youtu.be/wX3GMJY9B6A) by **José Haro Peralta**
|
|
340
|
+
- **Description**: A comprehensive overview and demo of Schemathesis.
|
|
341
|
+
- **Date**: 14 Feb 2023
|
|
343
342
|
- [Schemathesis tutorial](https://appdev.consulting.redhat.com/tracks/contract-first/automated-testing-with-schemathesis.html) with an accompanying [video](https://www.youtube.com/watch?v=4r7OC-lBKMg) by **Red Hat**
|
|
344
343
|
- **Description**: Provides a hands-on tutorial for API testing with Schemathesis.
|
|
345
344
|
- **Date**: 09 Feb 2023
|
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
schemathesis/__init__.py,sha256=WW1NBZxmc5jRR0c24xz-ZtTkJMUQG5MOw1MGVRRGc1s,1970
|
|
2
|
+
schemathesis/_compat.py,sha256=VizWR0QAVj4l7WZautNe_zmo3AJ7WBl2zrJQOfJAQtk,1837
|
|
3
|
+
schemathesis/_dependency_versions.py,sha256=P8f-zHGGUb1RRBIwg_QqMLzVTuey8dKKHSeVVmZi6TM,505
|
|
4
|
+
schemathesis/_hypothesis.py,sha256=Hd-cbvabDNfqx3KuGL1XOXwRDrx3ajtXx4_Tv8dzU3Y,6676
|
|
5
|
+
schemathesis/_lazy_import.py,sha256=LTki2tM168fCcXet1e6qDoQq8SLgInUA3xjXgi7cXJk,469
|
|
6
|
+
schemathesis/_xml.py,sha256=1ILe404GO6sfUjFqzy44EvYMYvbBirjTH7-b4QiAEik,6781
|
|
7
|
+
schemathesis/auths.py,sha256=09tlGuNGpl3rrsU3ua3UI3rIefqUIpaVtG89U5P6rJo,14731
|
|
8
|
+
schemathesis/checks.py,sha256=jB7E6PfdeLSwMhjLVGmC3WoGCw4DXug_TYP7o0ETrGQ,1572
|
|
9
|
+
schemathesis/code_samples.py,sha256=QFwyA7dmc_ij2FRwfbe0uMRm6j2yeofQ8zXynZV3SZI,4122
|
|
10
|
+
schemathesis/constants.py,sha256=sDvVBhNW1TIvNXFMxicHyNgNTxlng877KZsaS7K_L2Y,2085
|
|
11
|
+
schemathesis/exceptions.py,sha256=grrVZPTKlSndXunXz0jXExtHGFNRJacJUjFSpk3qjbY,16598
|
|
12
|
+
schemathesis/failures.py,sha256=cWPaIzou8nv8ioUXImvgT_JyCaj9MOJJS_Nbc6fvhxU,5191
|
|
13
|
+
schemathesis/filters.py,sha256=oaNrVA6VWCSy85k9CkB9JdaVpHFFTcJ831gPnfW3-PU,9334
|
|
14
|
+
schemathesis/graphql.py,sha256=YkoKWY5K8lxp7H3ikAs-IsoDbiPwJvChG7O8p3DgwtI,229
|
|
15
|
+
schemathesis/hooks.py,sha256=cNJgCh7SyLWT1sYDKF5ncDC80ld08CinvKo2IqLMV4g,12396
|
|
16
|
+
schemathesis/lazy.py,sha256=JTXoL5QMFc-_h4OsilVV20jTkXEp8pcW5KmJU1UL-QQ,13302
|
|
17
|
+
schemathesis/loaders.py,sha256=RJnrbf-3vZ7KXmRBkmr3uqWyg0eHzOnONABuudWcTIg,4586
|
|
18
|
+
schemathesis/models.py,sha256=2-gU4PInUiwcgoIeBG5bfksq_VR4Rtntcvl47Tcvc7o,45875
|
|
19
|
+
schemathesis/parameters.py,sha256=oSsXRpujndiv5_1lWUnBZQEJajqd9AQ8sMxVcxtr7rY,2685
|
|
20
|
+
schemathesis/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
21
|
+
schemathesis/sanitization.py,sha256=WSV_MB5YRrYkp1pQRPHrzsidqsKcqYZiq64N9grKobo,8956
|
|
22
|
+
schemathesis/schemas.py,sha256=3GhjXZ0zHdyHp7R3wCuTcRjVr2k-MZuYG4wSdV7ORqA,16365
|
|
23
|
+
schemathesis/serializers.py,sha256=c-LkIJuuc4D5owoJREm7KQQd3AgcsENPIXEEyiNcevY,11109
|
|
24
|
+
schemathesis/targets.py,sha256=tzp7VZ2-7g2nZHCooRgFzTMtOVcbl0rvtNR421hQthA,1162
|
|
25
|
+
schemathesis/throttling.py,sha256=QQcS7TFpXHavUjm0kdFaCcCRhAGlgQ4y3XIbkdRoW20,1079
|
|
26
|
+
schemathesis/types.py,sha256=AglR5M0bce-YXeDRkweToXTP0GjNOWVjS_mIsxLobwc,919
|
|
27
|
+
schemathesis/utils.py,sha256=tjH1jkMseEXV6vYg8ylJpYd7sRprnpbmXqdWg20ZaGE,4939
|
|
28
|
+
schemathesis/cli/__init__.py,sha256=2J8mFM82HHGedequClJvxiOPGbtTjeh2R4wtkyb370U,59150
|
|
29
|
+
schemathesis/cli/callbacks.py,sha256=fviiaR9QSrvd7l8GP81q_L0fgj6oYi8JLvdilk7W6W8,12472
|
|
30
|
+
schemathesis/cli/cassettes.py,sha256=-tRi8JBV6a2Ol8lotTydm_7hvU2ueRmb5Rg9Nq6qJHE,12839
|
|
31
|
+
schemathesis/cli/constants.py,sha256=x9zrVVFBTOO1HogPeqRO5Mvdgs3y1kiah9R5nPRTIyw,1347
|
|
32
|
+
schemathesis/cli/context.py,sha256=QrNr-5-7Z8TWGNzlD87hJZau6wU--ZboYHN92cyg82k,1652
|
|
33
|
+
schemathesis/cli/debug.py,sha256=PDEa-oHyz5bZ8aYjRYARwQaCv_AC6HM_L43LJfe4vUM,657
|
|
34
|
+
schemathesis/cli/handlers.py,sha256=62GPWPmgeGUz3pkDd01H4UCXcIy5a9yRtU7qaAeeR-A,389
|
|
35
|
+
schemathesis/cli/junitxml.py,sha256=jMZzYBYpBE7Rl5n1ct3J0bhhPa1lhBeYb33lTZE1eW8,1792
|
|
36
|
+
schemathesis/cli/options.py,sha256=7_dXcrPT0kWqAkm60cAT1J0IsTOcvNFxT1pcHYttBuI,2558
|
|
37
|
+
schemathesis/cli/sanitization.py,sha256=v-9rsMCBpWhom0Bfzj_8c6InqxkVjSWK6kRoURa52Nk,727
|
|
38
|
+
schemathesis/cli/output/__init__.py,sha256=AXaUzQ1nhQ-vXhW4-X-91vE2VQtEcCOrGtQXXNN55iQ,29
|
|
39
|
+
schemathesis/cli/output/default.py,sha256=g2SBeZWRspBRlSqYkDrQvkFVVVosfthbaGa2wMJozK8,31639
|
|
40
|
+
schemathesis/cli/output/short.py,sha256=Ui21Ko7eY5igs4CyNFb88-KRXKmMjz776l9aCHpYq8o,1628
|
|
41
|
+
schemathesis/contrib/__init__.py,sha256=FH8NL8NXgSKBFOF8Jy_EB6T4CJEaiM-tmDhz16B2o4k,187
|
|
42
|
+
schemathesis/contrib/unique_data.py,sha256=XttUSDVzD7-231jC7kqMi-9Xmu2aP8ljjDYINMOoHJk,736
|
|
43
|
+
schemathesis/contrib/openapi/__init__.py,sha256=9jG6b909V2ediVl-yVIIfNqfbNcqLpEMWh20EiDXCdU,120
|
|
44
|
+
schemathesis/contrib/openapi/formats/__init__.py,sha256=OpHWPW8MkTLVv83QXPYY1HVLflhmSH49hSVefm1oVV0,111
|
|
45
|
+
schemathesis/contrib/openapi/formats/uuid.py,sha256=SsTH_bInSXnlGLNyYLmwUfvafVnVOTHdmhmKytQVoUQ,390
|
|
46
|
+
schemathesis/experimental/__init__.py,sha256=vWj64BquX0mbCSd9iDBlwMb1dfm3zHJjAWBQiozRnxw,2474
|
|
47
|
+
schemathesis/extra/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
48
|
+
schemathesis/extra/_aiohttp.py,sha256=YQIV-jHdlAyyw5O4FQDQC8KTLjwKi-LWfD3U7JU4Pns,956
|
|
49
|
+
schemathesis/extra/_flask.py,sha256=BHCbxBDoMlIvNS5sRNyrPN1NwHxiDQt0IsyfYwwoFes,289
|
|
50
|
+
schemathesis/extra/_server.py,sha256=ZX_Fiv_aTJGWVG0QTHDZQKXPVasu9Zq-EPV8iGY3xQ0,540
|
|
51
|
+
schemathesis/extra/pytest_plugin.py,sha256=3b40g2yNywKrgtX9PrVeOmVl5mBn5de7K8FE5Mzt0w8,9892
|
|
52
|
+
schemathesis/fixups/__init__.py,sha256=iTpOm-cwyZQRglbWRJHxj3k7WO9a4a-MCq-UDQa6U0Y,966
|
|
53
|
+
schemathesis/fixups/fast_api.py,sha256=-gjYNSUtiKl7cKgyQ_rON0Oo_sGm6r7rOQDH0ahG32A,1322
|
|
54
|
+
schemathesis/fixups/utf8_bom.py,sha256=ttzPOaJb6K7QtNAbIZ_TWrrm0N9FylS8QzO6zI0jXgY,764
|
|
55
|
+
schemathesis/generation/__init__.py,sha256=NOmYWmbTt0uW5Vlx2-xfoXV_lLQs08d9T12v9pFBhrA,1951
|
|
56
|
+
schemathesis/internal/__init__.py,sha256=93HcdG3LF0BbQKbCteOsFMa1w6nXl8yTmx87QLNJOik,161
|
|
57
|
+
schemathesis/internal/copy.py,sha256=xsC7RyrFa9KadMsj9ai_aAy0XZg0oplz3cFZCka_2fg,459
|
|
58
|
+
schemathesis/internal/datetime.py,sha256=zPLBL0XXLNfP-KYel3H2m8pnsxjsA_4d-zTOhJg2EPQ,136
|
|
59
|
+
schemathesis/internal/deprecation.py,sha256=Ure1yZQ4cmNfRXQKy9Z94t-4iK3vguV7JfWeeuT_nLc,1107
|
|
60
|
+
schemathesis/internal/jsonschema.py,sha256=eQEkBLTdJ__U7Z0XYXB_RVBQJ4texfFO0AaOoyXzh7I,1156
|
|
61
|
+
schemathesis/internal/result.py,sha256=Og_ZfwwQ6JFmW79ExC1ndjVMIOHJB7o9XtrfhYIjOOs,461
|
|
62
|
+
schemathesis/internal/transformation.py,sha256=ZNEtL8ezryLdP9-of4eSRBMSjjV_lBQ5DZZfoPGZFEU,449
|
|
63
|
+
schemathesis/internal/validation.py,sha256=ZCUrjB_QFriyMKo4V2HgZknMnywOtpwlcEADQiWRJFs,591
|
|
64
|
+
schemathesis/runner/__init__.py,sha256=1p7-9Snb9hib2qBf0lesBfiE7vKYCg8s_Nrgk3G2fgQ,19823
|
|
65
|
+
schemathesis/runner/events.py,sha256=whpHGXcT7esnJ2bNsFirUrrELI3GtDAAoJ7VVTty2mc,9416
|
|
66
|
+
schemathesis/runner/serialization.py,sha256=MHgSlsqIWAHqzXtpZABEEr3ARfd7sdE-GRaNP-r7L8Y,15495
|
|
67
|
+
schemathesis/runner/impl/__init__.py,sha256=1E2iME8uthYPBh9MjwVBCTFV-P3fi7AdphCCoBBspjs,199
|
|
68
|
+
schemathesis/runner/impl/core.py,sha256=T3IRLw01LLHbvajEgHM7wTxkXhOXHRlezsn4Y1mUc9g,32986
|
|
69
|
+
schemathesis/runner/impl/solo.py,sha256=-_Ux8WpFccx0pTNn6lNiAQf7G2zO65DmR6XlBxwIp-s,3271
|
|
70
|
+
schemathesis/runner/impl/threadpool.py,sha256=oHGfBvSvXKPqowON_cOa7vYbejix_z1slP0JojPGLIY,14983
|
|
71
|
+
schemathesis/service/__init__.py,sha256=cDVTCFD1G-vvhxZkJUwiToTAEQ-0ByIoqwXvJBCf_V8,472
|
|
72
|
+
schemathesis/service/auth.py,sha256=AiZXvSNwz1Hi3fn-OCp6XD-E4GAMDlfcX8fORJ8_dLo,445
|
|
73
|
+
schemathesis/service/ci.py,sha256=Nke_GHtUlbJtZA-7JmjD1Nu4aKBCtkUo8AwFwm38qpk,6781
|
|
74
|
+
schemathesis/service/client.py,sha256=lkop8gLgv0KN4Y_vA6RWVFqIzVPUdJWn144dgZlqxo4,3953
|
|
75
|
+
schemathesis/service/constants.py,sha256=Q1bhtLRkmhso4KSVAtWl0u446Wlbk3ShOL3ZdbPoJOM,1502
|
|
76
|
+
schemathesis/service/events.py,sha256=oysiTeHkE1r65CZTPlyNXW3XFh0_Xt0eq9-FNBUy5U0,1237
|
|
77
|
+
schemathesis/service/hosts.py,sha256=58uXU3-Y3RZC6Sl_-dsLHz_jOzpqKSER0Dl1_06MkNk,3408
|
|
78
|
+
schemathesis/service/metadata.py,sha256=jsPeif2XbrwjZgzDD3YysuUgGaSZm6Hkc4e3raDewqo,1475
|
|
79
|
+
schemathesis/service/models.py,sha256=bY9g48TdtEPS0yO2lTKEsHtKl81Hh5vSJtMDe8kkWSI,850
|
|
80
|
+
schemathesis/service/report.py,sha256=ua1-cfa-TgGshZgimUQ3-YQqykhZqMHCkEificBKncM,8294
|
|
81
|
+
schemathesis/service/serialization.py,sha256=uXB-pRi1oylJ6n2CveoVyaK9m1tbQgykDcgTNPvGhHc,6781
|
|
82
|
+
schemathesis/service/usage.py,sha256=Z-GCwFcW1pS6YdC-ziEOynikqgOttxp2Uyj_dfK5Q7A,2437
|
|
83
|
+
schemathesis/specs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
84
|
+
schemathesis/specs/graphql/__init__.py,sha256=fgyHtvWNUVWismBTOqxQtgLoTighTfvMv6v6QCD_Oyc,85
|
|
85
|
+
schemathesis/specs/graphql/loaders.py,sha256=cZXUewamEgQ2M0YzHvRa1SIgu5UrKKKISVjSIKze6k4,10628
|
|
86
|
+
schemathesis/specs/graphql/nodes.py,sha256=7F5jbk96uTZZXK9Ulr86KpCAn8z6LKMBcrLrdJHggH0,540
|
|
87
|
+
schemathesis/specs/graphql/scalars.py,sha256=W5oj6AcjiXpR-Z6eSSp1oPWl0mjH2NF-w87nRFhrHHg,1805
|
|
88
|
+
schemathesis/specs/graphql/schemas.py,sha256=BGsN6mycvjCoHez_E8TfKTGDDG5l2umP34qIGGBAxFc,10182
|
|
89
|
+
schemathesis/specs/openapi/__init__.py,sha256=Ue1Qod8IpzeJ5dwxjAHNv97Nh8NVzm_6fnHR2BIzfHY,220
|
|
90
|
+
schemathesis/specs/openapi/_hypothesis.py,sha256=XTwArWBgOYbxQcRK9MUNs13ZvRDaHCXw22aFIibL9HA,22125
|
|
91
|
+
schemathesis/specs/openapi/checks.py,sha256=1WB_UGNqptfJThWLUNbds1Q-IzOGbbHCOYPIhBYk-zs,5411
|
|
92
|
+
schemathesis/specs/openapi/constants.py,sha256=JqM_FHOenqS_MuUE9sxVQ8Hnw0DNM8cnKDwCwPLhID4,783
|
|
93
|
+
schemathesis/specs/openapi/converter.py,sha256=rhzGRJNW6o9CeKLanVm_VIlXJQEWCpQ60XZobSpnplY,2677
|
|
94
|
+
schemathesis/specs/openapi/definitions.py,sha256=t5xffHLBnSgptBdDkSqYN1OfT-DaXoeUw2tIgNEe2q8,94057
|
|
95
|
+
schemathesis/specs/openapi/examples.py,sha256=S_c5YmaSADc8II2QRq15f2K9pZkaTWxuz08bcith3u0,9070
|
|
96
|
+
schemathesis/specs/openapi/filters.py,sha256=Ei-QTFcGCvGSIunT-GYQrtqzB-kqvUePOcUuC7B7mT8,1436
|
|
97
|
+
schemathesis/specs/openapi/formats.py,sha256=ZT-10kOWE4Xcc_OXchjhPxpjA2iq4SXG2a75Lnib03w,1146
|
|
98
|
+
schemathesis/specs/openapi/links.py,sha256=YryI35djHOhTikRV3FLafy_jhYFypF7E8Yb6dg9ksWc,14575
|
|
99
|
+
schemathesis/specs/openapi/loaders.py,sha256=l3H8T4GgolysRgrxpjYK_vOB2xyPIHNbKPX3_FrLq-M,23439
|
|
100
|
+
schemathesis/specs/openapi/parameters.py,sha256=GbvxMQ0vg2-HvLrKr1dBtOwSNEXkAF6Hj-hqX9qdTNs,15014
|
|
101
|
+
schemathesis/specs/openapi/references.py,sha256=pnn0aQbP2Kz0xwZE0gVa9nYGyJkXA2jRYoNMFcRf3TQ,8656
|
|
102
|
+
schemathesis/specs/openapi/schemas.py,sha256=s81MBsGVoc3WILCYR8DjNvmN6OotSsg27YFK5iqtdt8,46220
|
|
103
|
+
schemathesis/specs/openapi/security.py,sha256=lNRD4RSYe341f_ayhl_bQuYlFbGzx4luhXi6qJwzrOY,6495
|
|
104
|
+
schemathesis/specs/openapi/serialization.py,sha256=pHp5rlJhKXpCSAcM4JQtfqIN-CaD17wol4P7OIfqtLk,11382
|
|
105
|
+
schemathesis/specs/openapi/utils.py,sha256=gmW4v6o6sZQifajfPquhFeWmZWGQM89mOOBYZvjnE7g,741
|
|
106
|
+
schemathesis/specs/openapi/validation.py,sha256=UJWtW7VTRyMbbBHMRhMwNSUn92k1Hnp4p7IIVqCvqiI,998
|
|
107
|
+
schemathesis/specs/openapi/expressions/__init__.py,sha256=7TZeRPpCPt0Bjzs5L--AkQnnIbDgTRnpkgYeJKma5Bc,660
|
|
108
|
+
schemathesis/specs/openapi/expressions/context.py,sha256=ngZQPUvN8PKqvH8SIvhM3yyDZjb_g1aPzH9hzquRsKE,350
|
|
109
|
+
schemathesis/specs/openapi/expressions/errors.py,sha256=YLVhps-sYcslgVaahfcUYxUSHlIfWL-rQMeT5PZSMZ8,219
|
|
110
|
+
schemathesis/specs/openapi/expressions/lexer.py,sha256=pYoqIlogmw2gyAwec01OTvUb_d8fG1zLiKwlCkLK8RA,3824
|
|
111
|
+
schemathesis/specs/openapi/expressions/nodes.py,sha256=fb9yvxDWfq3WQcrtsn1dcj8GSMyzsvofW3Tn2mFOdL4,3298
|
|
112
|
+
schemathesis/specs/openapi/expressions/parser.py,sha256=xFA3cTTxl7VgAOiFF-vSDZ3usUFXpd3jk6ewMLeg6ao,3523
|
|
113
|
+
schemathesis/specs/openapi/negative/__init__.py,sha256=Nhe6qeSCnlgf5l-Fu6yHvL--3tkAkxYyIGffuo77bLs,3696
|
|
114
|
+
schemathesis/specs/openapi/negative/mutations.py,sha256=I2YKm6N3VoP3TpxRQMbYQze3XSVdLn1k7z8vqV1oJ4s,18642
|
|
115
|
+
schemathesis/specs/openapi/negative/types.py,sha256=a7buCcVxNBG6ILBM3A7oNTAX0lyDseEtZndBuej8MbI,174
|
|
116
|
+
schemathesis/specs/openapi/negative/utils.py,sha256=ozcOIuASufLqZSgnKUACjX-EOZrrkuNdXX0SDnLoGYA,168
|
|
117
|
+
schemathesis/specs/openapi/stateful/__init__.py,sha256=R8RhPJD3rDzqL4eA9jSnUwh9Q_Mv27ka1C5FdRuyusY,4509
|
|
118
|
+
schemathesis/specs/openapi/stateful/links.py,sha256=cSIwho2Hroty6au-gyCD-OwqnuCcIpnIIHU6FvF0SwA,3533
|
|
119
|
+
schemathesis/stateful/__init__.py,sha256=f_zFE657iJufOJ4lWtGzWZ2PsU9O6T0vgAqaF-SMXi0,4406
|
|
120
|
+
schemathesis/stateful/state_machine.py,sha256=gKOPIlea0P-JtOCEpTr7BnJzoxoRECfFlvDuqjO_OXw,10988
|
|
121
|
+
schemathesis/transports/__init__.py,sha256=Wix_WnOxZlDFD_XFqPMIqz_3TAc7Xda6UGicONaLnNM,108
|
|
122
|
+
schemathesis/transports/auth.py,sha256=ZKFku9gjhIG6445qNC2p_64Yt9Iz_4azbvja8AMptBk,404
|
|
123
|
+
schemathesis/transports/content_types.py,sha256=bgep10TeCT9e0GfOxVFBOFmrmdZ3t4tG8MLE0SJN5D0,1297
|
|
124
|
+
schemathesis/transports/headers.py,sha256=EDxpm8su0AuhyqZUkMex-OFZMAJN_5NHah7fDT2HDZE,989
|
|
125
|
+
schemathesis/transports/responses.py,sha256=K9eUaU3SqTFsMWegITWWENH3qrlNoT9OgU1aSc2oZ7I,2428
|
|
126
|
+
schemathesis-3.22.1.dist-info/METADATA,sha256=cbIrQGwAfZdZqFRgaQQup8bxSNcP8eVUV2gIN8frJ0Y,15593
|
|
127
|
+
schemathesis-3.22.1.dist-info/WHEEL,sha256=hKi7AIIx6qfnsRbr087vpeJnrVUuDokDHZacPPMW7-Y,87
|
|
128
|
+
schemathesis-3.22.1.dist-info/entry_points.txt,sha256=VHyLcOG7co0nOeuk8WjgpRETk5P1E2iCLrn26Zkn5uk,158
|
|
129
|
+
schemathesis-3.22.1.dist-info/licenses/LICENSE,sha256=PsPYgrDhZ7g9uwihJXNG-XVb55wj2uYhkl2DD8oAzY0,1103
|
|
130
|
+
schemathesis-3.22.1.dist-info/RECORD,,
|
|
@@ -1,130 +0,0 @@
|
|
|
1
|
-
schemathesis/__init__.py,sha256=_g9CYxvJLyeCvGio412ayBwCbnHw0oIiFVBBh-Iltxg,1952
|
|
2
|
-
schemathesis/_compat.py,sha256=OzZEZ1a_lDcZAJZVgw3zMQi4rKrvx0MPBmZhbnvnKsQ,2337
|
|
3
|
-
schemathesis/_dependency_versions.py,sha256=t055weFcyCuJ7XjjFZnDvEx9SyIicliuD10rvvn7k2E,793
|
|
4
|
-
schemathesis/_hypothesis.py,sha256=rRri7zpOd60QlSnHCJK9BoGfVQVcbcBoT1hpaxlCJ9U,6562
|
|
5
|
-
schemathesis/_lazy_import.py,sha256=8hAirlbEYB3G8-88PC2bOL9BlSVTs68Ao0IScb5ZBH0,440
|
|
6
|
-
schemathesis/_xml.py,sha256=47IEW_mmPsG7X8KkL21-LfykHMGrAQZnG7MiBXDpEWk,6746
|
|
7
|
-
schemathesis/auths.py,sha256=CtKF0aXOlbNOB9BYU1iuzcKhtdRf81TQ6pWqebECCLI,14974
|
|
8
|
-
schemathesis/checks.py,sha256=a_pDdq4fvJVQMquCauk8lXx3OgYI3tJYRi3VlIdjefc,1596
|
|
9
|
-
schemathesis/code_samples.py,sha256=kQ3E-2Z1RIHJrJvMkQj8qFm7o8_5Kq-_fg0xFBH67SM,4184
|
|
10
|
-
schemathesis/constants.py,sha256=pA4sMNHaKcD80uP7dCIUGN5gVXKwYvMkx91_3lm9aUY,2084
|
|
11
|
-
schemathesis/exceptions.py,sha256=425XqrnHFb6W3jEQj1TDCUM7g3bRaU74V3XshFfYJC4,16208
|
|
12
|
-
schemathesis/failures.py,sha256=iqhZwzJFck-GBx7jzL3ckjhScyFEsOQDj6lIVaTNVNE,5265
|
|
13
|
-
schemathesis/filters.py,sha256=cuR7yJzAZ4p9pjnKcD9B061aMQAOJzutg_5HJKNEr0g,9449
|
|
14
|
-
schemathesis/graphql.py,sha256=YkoKWY5K8lxp7H3ikAs-IsoDbiPwJvChG7O8p3DgwtI,229
|
|
15
|
-
schemathesis/hooks.py,sha256=sGBmG3IdrPS7-aOj7e18y9XZ5mXdZu8DSQ_Vbdg7cho,12479
|
|
16
|
-
schemathesis/lazy.py,sha256=v6JExCx4D7tOKyGSFagv1Owk1aJYga9ZWbaqeIWPfAQ,13017
|
|
17
|
-
schemathesis/loaders.py,sha256=_ZqmK0WJnuZ0i7N03jKIA3hm-KMCRThQd-Gq1KJOG9E,4611
|
|
18
|
-
schemathesis/models.py,sha256=xPi3a04MVC2vcJ7kxoEu25OV2aEpQt07PKgo0iGoc8U,45841
|
|
19
|
-
schemathesis/parameters.py,sha256=vFc6RRt9mWrynVxpRGFTPCGfFnrhF8q6RnTo7u2VXro,2677
|
|
20
|
-
schemathesis/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
21
|
-
schemathesis/sanitization.py,sha256=1l9IhhD0ZjjybUqL_NSZ8WJLPVZK74f4TZ6bgJeIA0M,9060
|
|
22
|
-
schemathesis/schemas.py,sha256=duC6dAJag62vEU119A8u2nJTIXzLF5H9gc41oITwzFo,16025
|
|
23
|
-
schemathesis/serializers.py,sha256=SVUXuDV08DC20lTlQiL5r1aHos1L4x2tE7IvgZqaBBo,11089
|
|
24
|
-
schemathesis/targets.py,sha256=6yYVdYHJ-o-Dqhz1gGGG6ZxHGFjKXj1u7laIDwqNm7I,1171
|
|
25
|
-
schemathesis/throttling.py,sha256=Q8MKzGJEPFGSSMI4-gT5U_Dnl-zanf8hL5nZ2eiyvGw,1086
|
|
26
|
-
schemathesis/types.py,sha256=AglR5M0bce-YXeDRkweToXTP0GjNOWVjS_mIsxLobwc,919
|
|
27
|
-
schemathesis/utils.py,sha256=1ZB5S7EMwfrQzZ6ujMkJ-aBx7jBWh2b8NVvoMuoI6w8,4952
|
|
28
|
-
schemathesis/cli/__init__.py,sha256=iMu9j_L-8OqCAwRPLgvHlPF71C9ptl1GXwtUojNUF8o,58496
|
|
29
|
-
schemathesis/cli/callbacks.py,sha256=IjrI-bOZD3qJ30vKBz_veWFACRrKO9lwBXf2_SzceUo,12589
|
|
30
|
-
schemathesis/cli/cassettes.py,sha256=V4s09nZSyrNHQkOnxAPRWF-cQ-JX3z1R5QjJiXQwOrY,12891
|
|
31
|
-
schemathesis/cli/constants.py,sha256=x9zrVVFBTOO1HogPeqRO5Mvdgs3y1kiah9R5nPRTIyw,1347
|
|
32
|
-
schemathesis/cli/context.py,sha256=W3vtAOu7vGrcs1D34AMBnaCgebxy_vgVZFUxjVs5uvk,1482
|
|
33
|
-
schemathesis/cli/debug.py,sha256=PDEa-oHyz5bZ8aYjRYARwQaCv_AC6HM_L43LJfe4vUM,657
|
|
34
|
-
schemathesis/cli/handlers.py,sha256=62GPWPmgeGUz3pkDd01H4UCXcIy5a9yRtU7qaAeeR-A,389
|
|
35
|
-
schemathesis/cli/junitxml.py,sha256=RyhBMDWKzVc7Rz4DjSsWFHfZ8Sg_2fvpDTekWuLj6F4,1798
|
|
36
|
-
schemathesis/cli/options.py,sha256=VIn6KA7SDENe6hs4iU8RBYHFCo0b7d5BZxYAfnclPVE,2602
|
|
37
|
-
schemathesis/cli/sanitization.py,sha256=v-9rsMCBpWhom0Bfzj_8c6InqxkVjSWK6kRoURa52Nk,727
|
|
38
|
-
schemathesis/cli/output/__init__.py,sha256=AXaUzQ1nhQ-vXhW4-X-91vE2VQtEcCOrGtQXXNN55iQ,29
|
|
39
|
-
schemathesis/cli/output/default.py,sha256=Dk4-ZNuYK6021sMuPhxqo-xEZrlFHdU6ri638mwrdn0,30130
|
|
40
|
-
schemathesis/cli/output/short.py,sha256=Ui21Ko7eY5igs4CyNFb88-KRXKmMjz776l9aCHpYq8o,1628
|
|
41
|
-
schemathesis/contrib/__init__.py,sha256=FH8NL8NXgSKBFOF8Jy_EB6T4CJEaiM-tmDhz16B2o4k,187
|
|
42
|
-
schemathesis/contrib/unique_data.py,sha256=AYiYhWJVptzIVTJfurUnXb2o8UMY8qlqaiDJ7trXxjA,742
|
|
43
|
-
schemathesis/contrib/openapi/__init__.py,sha256=9jG6b909V2ediVl-yVIIfNqfbNcqLpEMWh20EiDXCdU,120
|
|
44
|
-
schemathesis/contrib/openapi/formats/__init__.py,sha256=OpHWPW8MkTLVv83QXPYY1HVLflhmSH49hSVefm1oVV0,111
|
|
45
|
-
schemathesis/contrib/openapi/formats/uuid.py,sha256=SsTH_bInSXnlGLNyYLmwUfvafVnVOTHdmhmKytQVoUQ,390
|
|
46
|
-
schemathesis/experimental/__init__.py,sha256=vWj64BquX0mbCSd9iDBlwMb1dfm3zHJjAWBQiozRnxw,2474
|
|
47
|
-
schemathesis/extra/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
48
|
-
schemathesis/extra/_aiohttp.py,sha256=CtebXNceFdovCImZMGzUel4ypIcDuSuHbYVQXzFo8eI,952
|
|
49
|
-
schemathesis/extra/_flask.py,sha256=_VEnaEOngLpyyXU7tZ8L2Fpeg1j46c9AvasM8e6R4V4,285
|
|
50
|
-
schemathesis/extra/_server.py,sha256=wkEe5SUdeA9dmhWR8FCevY8YFRx5vFKwD779e20P0Ek,518
|
|
51
|
-
schemathesis/extra/pytest_plugin.py,sha256=t868jIjPj5xe_CYCZugEB8d_1O9c9ne_0KrPdxTKuZY,9832
|
|
52
|
-
schemathesis/fixups/__init__.py,sha256=bCJoFaBLJXinwzd5G_Puvhrs7No58LcR6JzU2a2EwpI,947
|
|
53
|
-
schemathesis/fixups/fast_api.py,sha256=4lmy5vppm7pUYs-EBm9mE1HGvPeRvUmxA9Gs8-HK5n0,1293
|
|
54
|
-
schemathesis/fixups/utf8_bom.py,sha256=ttzPOaJb6K7QtNAbIZ_TWrrm0N9FylS8QzO6zI0jXgY,764
|
|
55
|
-
schemathesis/generation/__init__.py,sha256=hSYm9A3Z_04oRsT2c0CXdoLHj_Dfy0AaJlLK5Ud-w00,1631
|
|
56
|
-
schemathesis/internal/__init__.py,sha256=93HcdG3LF0BbQKbCteOsFMa1w6nXl8yTmx87QLNJOik,161
|
|
57
|
-
schemathesis/internal/copy.py,sha256=xsC7RyrFa9KadMsj9ai_aAy0XZg0oplz3cFZCka_2fg,459
|
|
58
|
-
schemathesis/internal/datetime.py,sha256=zPLBL0XXLNfP-KYel3H2m8pnsxjsA_4d-zTOhJg2EPQ,136
|
|
59
|
-
schemathesis/internal/deprecation.py,sha256=Ure1yZQ4cmNfRXQKy9Z94t-4iK3vguV7JfWeeuT_nLc,1107
|
|
60
|
-
schemathesis/internal/jsonschema.py,sha256=pWw8RJ0FS5QEryqrBIkRrPc0nf6EIaeX5YDb_iN4gUw,1121
|
|
61
|
-
schemathesis/internal/result.py,sha256=Og_ZfwwQ6JFmW79ExC1ndjVMIOHJB7o9XtrfhYIjOOs,461
|
|
62
|
-
schemathesis/internal/transformation.py,sha256=z5-Ru8kKOtFMXgoutvI_quNw0gI8n1fZRzrNob-nZcU,420
|
|
63
|
-
schemathesis/internal/validation.py,sha256=ZCUrjB_QFriyMKo4V2HgZknMnywOtpwlcEADQiWRJFs,591
|
|
64
|
-
schemathesis/runner/__init__.py,sha256=n0lvGRkYI__lvvNW5OG-06CWD1vKUpKzWSLe4l4sKGo,19099
|
|
65
|
-
schemathesis/runner/events.py,sha256=YD0aw5dG0BgdjhCzDMq8i1JH2gXmEmWxPYW-6Jpgdek,9204
|
|
66
|
-
schemathesis/runner/serialization.py,sha256=VyC5vTVywaI9igmMbC_csPnYWSPUWOp9YUrgMB_UjBI,14346
|
|
67
|
-
schemathesis/runner/impl/__init__.py,sha256=1E2iME8uthYPBh9MjwVBCTFV-P3fi7AdphCCoBBspjs,199
|
|
68
|
-
schemathesis/runner/impl/core.py,sha256=mlokbBEh8P9oF07aKQWhdhNXsHuHG9ZVU8nA_aNJ9BQ,33068
|
|
69
|
-
schemathesis/runner/impl/solo.py,sha256=7E4LkOWor7t47HTQllp7NYxUut9-0xL-GH3-HWdSwMU,3009
|
|
70
|
-
schemathesis/runner/impl/threadpool.py,sha256=_pVeANNFE9ITD9pD2o-WJ_eqA4pHs-sQCx6vbYTcoOA,14408
|
|
71
|
-
schemathesis/service/__init__.py,sha256=cDVTCFD1G-vvhxZkJUwiToTAEQ-0ByIoqwXvJBCf_V8,472
|
|
72
|
-
schemathesis/service/auth.py,sha256=AiZXvSNwz1Hi3fn-OCp6XD-E4GAMDlfcX8fORJ8_dLo,445
|
|
73
|
-
schemathesis/service/ci.py,sha256=Ew9fntOxy9RxN8QE9x2qDVscUKVME1ravAb81wh179U,6843
|
|
74
|
-
schemathesis/service/client.py,sha256=TaediWdYNSUetKWfuBv78_Sb0u_qfOzqZZW9L_xH53Q,3464
|
|
75
|
-
schemathesis/service/constants.py,sha256=8JNl-ZS8vaBPuHip9sj5CymOapb5xr-hrRgJrmhegx8,1451
|
|
76
|
-
schemathesis/service/events.py,sha256=ws4K9MacKxJaDGQtwZfsrQ4ZpaA5Do2-tjNc6y2DcRc,1233
|
|
77
|
-
schemathesis/service/hosts.py,sha256=_oCbUZGnnd7-WF0J9vBbYBkYezTtjK8bjLHP6o2GGrQ,3395
|
|
78
|
-
schemathesis/service/metadata.py,sha256=s2Ta5B4hvPqoJJ7QI985-8f2BEnD8N4Xe1aXutlvKWU,1261
|
|
79
|
-
schemathesis/service/models.py,sha256=w2LkLj8OFwCBvjJPs4Wwo6NqZHJsIDntbnct_S54yd8,458
|
|
80
|
-
schemathesis/service/report.py,sha256=T380r97R26XFOiej2fz2pLfOx12-QSj-Re1HEe3j6b4,8322
|
|
81
|
-
schemathesis/service/serialization.py,sha256=MAv3WI3b5h9DzG-n74auvfTmdP5ebuAPoKEUIagEzhE,6929
|
|
82
|
-
schemathesis/service/usage.py,sha256=6NhXm-6GXt0vmgiE95PP46Z0IYAlqF8jYvKL1ga5uNo,2440
|
|
83
|
-
schemathesis/specs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
84
|
-
schemathesis/specs/graphql/__init__.py,sha256=fgyHtvWNUVWismBTOqxQtgLoTighTfvMv6v6QCD_Oyc,85
|
|
85
|
-
schemathesis/specs/graphql/loaders.py,sha256=9UArP5zJEemPQoKwOq-Ii1qrqjlIVdOIfgztHNjalBA,10410
|
|
86
|
-
schemathesis/specs/graphql/nodes.py,sha256=CxaSrovFmVvyFelgc-8CTEPPHy9WmcDl21c1aUH0eBc,520
|
|
87
|
-
schemathesis/specs/graphql/scalars.py,sha256=co9O6f2F0rRU_fBvh9Qky5k1dzMKV8JuDcNA01EpsO8,954
|
|
88
|
-
schemathesis/specs/graphql/schemas.py,sha256=zdD6wMaAAbTEYfPWqCRTjRYdpl50ocasVc8jOKIvB58,9774
|
|
89
|
-
schemathesis/specs/openapi/__init__.py,sha256=Ue1Qod8IpzeJ5dwxjAHNv97Nh8NVzm_6fnHR2BIzfHY,220
|
|
90
|
-
schemathesis/specs/openapi/_hypothesis.py,sha256=qZzklOFUfEk1D-IpYopDdVjx0YDTNHUdke_VcyCKvMg,21424
|
|
91
|
-
schemathesis/specs/openapi/checks.py,sha256=6RpO5lyOyWSRFMmq3Xjxk4bV39vUQg4_84RNfnNSNh0,5678
|
|
92
|
-
schemathesis/specs/openapi/constants.py,sha256=JqM_FHOenqS_MuUE9sxVQ8Hnw0DNM8cnKDwCwPLhID4,783
|
|
93
|
-
schemathesis/specs/openapi/converter.py,sha256=SRbj7pcu4bGJUy3dYLUqAAZ1jnV20yAHXb-jjfeN0IM,2654
|
|
94
|
-
schemathesis/specs/openapi/definitions.py,sha256=pKbnwzGw42bbBdXoaU4itynWEoEqxITbYUdE6qOf8fE,94063
|
|
95
|
-
schemathesis/specs/openapi/examples.py,sha256=LfWn2bDUzpPGg6av3w7uO5JP5_u5pJM39t5lLwXD4Co,9049
|
|
96
|
-
schemathesis/specs/openapi/filters.py,sha256=vBopld8NdgSLlUEkdoP-52lmPhqQJR0HkMAzxOqTuhg,1477
|
|
97
|
-
schemathesis/specs/openapi/formats.py,sha256=VTiiOWt2CYEWH1x3aYi_GqOqMhM1jLDja_dAeC90LWQ,1152
|
|
98
|
-
schemathesis/specs/openapi/links.py,sha256=ENzQ9_0h9vF77ax_1DOcjslkaa8BFJiHn6sXCkwn3HQ,14665
|
|
99
|
-
schemathesis/specs/openapi/loaders.py,sha256=1oUCWdBNo_Sq5ZFixUXsjpEffue1nUM1Vymkx0C_tag,21511
|
|
100
|
-
schemathesis/specs/openapi/parameters.py,sha256=kjqfx8RuqiR7Gt2MsKm0WLsFF-GPBMnWNHe_CvGg9iM,15019
|
|
101
|
-
schemathesis/specs/openapi/references.py,sha256=7dERYHkp6VLn-Umotuv1kRF8-2X0dAI51-8xM3BzeaE,8654
|
|
102
|
-
schemathesis/specs/openapi/schemas.py,sha256=JlR_IU8AW-H-QD0Nlov2H7zjXrXVJnk8xGendme9xU8,45592
|
|
103
|
-
schemathesis/specs/openapi/security.py,sha256=3V6R0-XIT-Pr0s80aUJ2diyz9Qr1prisVNdYvXTF35s,6485
|
|
104
|
-
schemathesis/specs/openapi/serialization.py,sha256=cTt5NsF_dipmAVqoYJvxq9uuL-cn_EBL7iJGkhzx7Lo,11449
|
|
105
|
-
schemathesis/specs/openapi/utils.py,sha256=Dublwaz5EXNLDlzDLQPaBF3c8VNnrkv0cPqbcu9Kqzo,731
|
|
106
|
-
schemathesis/specs/openapi/validation.py,sha256=AFLSS9P8yGvhONP9QfieoAAjHqfMPl5wvtPT71TFPQk,989
|
|
107
|
-
schemathesis/specs/openapi/expressions/__init__.py,sha256=7TZeRPpCPt0Bjzs5L--AkQnnIbDgTRnpkgYeJKma5Bc,660
|
|
108
|
-
schemathesis/specs/openapi/expressions/context.py,sha256=ngZQPUvN8PKqvH8SIvhM3yyDZjb_g1aPzH9hzquRsKE,350
|
|
109
|
-
schemathesis/specs/openapi/expressions/errors.py,sha256=YLVhps-sYcslgVaahfcUYxUSHlIfWL-rQMeT5PZSMZ8,219
|
|
110
|
-
schemathesis/specs/openapi/expressions/lexer.py,sha256=pYoqIlogmw2gyAwec01OTvUb_d8fG1zLiKwlCkLK8RA,3824
|
|
111
|
-
schemathesis/specs/openapi/expressions/nodes.py,sha256=5AhNGOGtCzlJT2xQ8PMqLC5cebWgjoTZhS0CiRuIWQ4,3298
|
|
112
|
-
schemathesis/specs/openapi/expressions/parser.py,sha256=Mff_d0ZxOeU-7lnFCV0GVHlfU8eLPnUN4p81zdt730Y,3515
|
|
113
|
-
schemathesis/specs/openapi/negative/__init__.py,sha256=KtDM--DPOVx4tkNsexEg-8d209N2Mdcu2g2deHEEDMI,3517
|
|
114
|
-
schemathesis/specs/openapi/negative/mutations.py,sha256=IlsEf9wbH-8tzMdCHE2Y0eV02HUcjDjIQGS73OdYaiw,18642
|
|
115
|
-
schemathesis/specs/openapi/negative/types.py,sha256=a7buCcVxNBG6ILBM3A7oNTAX0lyDseEtZndBuej8MbI,174
|
|
116
|
-
schemathesis/specs/openapi/negative/utils.py,sha256=ozcOIuASufLqZSgnKUACjX-EOZrrkuNdXX0SDnLoGYA,168
|
|
117
|
-
schemathesis/specs/openapi/stateful/__init__.py,sha256=9xIoc7BLYTgpwvoHEaGNOekRyhIxrrzcWFBDxe03pak,4511
|
|
118
|
-
schemathesis/specs/openapi/stateful/links.py,sha256=gqEEtTMMF1scGW5h_fmiB6f4xzVyYzZrPs0Vkhp2Yaw,3542
|
|
119
|
-
schemathesis/stateful/__init__.py,sha256=WEwfl0zo-0ikqiNa8RfLvOuiIXosddng5SYAXwLB2ns,4613
|
|
120
|
-
schemathesis/stateful/state_machine.py,sha256=C7YqlqJt2rY0yJPPMzCheIQHXCTROdSB7mzZehyGeDk,11022
|
|
121
|
-
schemathesis/transports/__init__.py,sha256=Wix_WnOxZlDFD_XFqPMIqz_3TAc7Xda6UGicONaLnNM,108
|
|
122
|
-
schemathesis/transports/auth.py,sha256=58OCvww9Z6EwADalFXu6slpZCb-oCNFTUN_qpa3ao1w,436
|
|
123
|
-
schemathesis/transports/content_types.py,sha256=7QJC2TozJ9bBtPhI-KfjEiFT5qc1Q2M60XXV4heNRtY,1101
|
|
124
|
-
schemathesis/transports/headers.py,sha256=3XRbLiDXkJGnCpOzCetikQAcRMJyO2kGUnAPXEXAklA,960
|
|
125
|
-
schemathesis/transports/responses.py,sha256=2YpOyU4ruQRWFKr_ccZEISRSFKxKSW_s4GibkBH0qMc,2432
|
|
126
|
-
schemathesis-3.21.2.dist-info/METADATA,sha256=SOmx2s1D6qwVNYiK-yRs4bM5sF2uR83vv6gXQ1877bg,15664
|
|
127
|
-
schemathesis-3.21.2.dist-info/WHEEL,sha256=hKi7AIIx6qfnsRbr087vpeJnrVUuDokDHZacPPMW7-Y,87
|
|
128
|
-
schemathesis-3.21.2.dist-info/entry_points.txt,sha256=VHyLcOG7co0nOeuk8WjgpRETk5P1E2iCLrn26Zkn5uk,158
|
|
129
|
-
schemathesis-3.21.2.dist-info/licenses/LICENSE,sha256=PsPYgrDhZ7g9uwihJXNG-XVb55wj2uYhkl2DD8oAzY0,1103
|
|
130
|
-
schemathesis-3.21.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|