schemathesis 3.13.0__py3-none-any.whl → 4.4.2__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.
Files changed (245) hide show
  1. schemathesis/__init__.py +53 -25
  2. schemathesis/auths.py +507 -0
  3. schemathesis/checks.py +190 -25
  4. schemathesis/cli/__init__.py +27 -1016
  5. schemathesis/cli/__main__.py +4 -0
  6. schemathesis/cli/commands/__init__.py +133 -0
  7. schemathesis/cli/commands/data.py +10 -0
  8. schemathesis/cli/commands/run/__init__.py +602 -0
  9. schemathesis/cli/commands/run/context.py +228 -0
  10. schemathesis/cli/commands/run/events.py +60 -0
  11. schemathesis/cli/commands/run/executor.py +157 -0
  12. schemathesis/cli/commands/run/filters.py +53 -0
  13. schemathesis/cli/commands/run/handlers/__init__.py +46 -0
  14. schemathesis/cli/commands/run/handlers/base.py +45 -0
  15. schemathesis/cli/commands/run/handlers/cassettes.py +464 -0
  16. schemathesis/cli/commands/run/handlers/junitxml.py +60 -0
  17. schemathesis/cli/commands/run/handlers/output.py +1750 -0
  18. schemathesis/cli/commands/run/loaders.py +118 -0
  19. schemathesis/cli/commands/run/validation.py +256 -0
  20. schemathesis/cli/constants.py +5 -0
  21. schemathesis/cli/core.py +19 -0
  22. schemathesis/cli/ext/fs.py +16 -0
  23. schemathesis/cli/ext/groups.py +203 -0
  24. schemathesis/cli/ext/options.py +81 -0
  25. schemathesis/config/__init__.py +202 -0
  26. schemathesis/config/_auth.py +51 -0
  27. schemathesis/config/_checks.py +268 -0
  28. schemathesis/config/_diff_base.py +101 -0
  29. schemathesis/config/_env.py +21 -0
  30. schemathesis/config/_error.py +163 -0
  31. schemathesis/config/_generation.py +157 -0
  32. schemathesis/config/_health_check.py +24 -0
  33. schemathesis/config/_operations.py +335 -0
  34. schemathesis/config/_output.py +171 -0
  35. schemathesis/config/_parameters.py +19 -0
  36. schemathesis/config/_phases.py +253 -0
  37. schemathesis/config/_projects.py +543 -0
  38. schemathesis/config/_rate_limit.py +17 -0
  39. schemathesis/config/_report.py +120 -0
  40. schemathesis/config/_validator.py +9 -0
  41. schemathesis/config/_warnings.py +89 -0
  42. schemathesis/config/schema.json +975 -0
  43. schemathesis/core/__init__.py +72 -0
  44. schemathesis/core/adapter.py +34 -0
  45. schemathesis/core/compat.py +32 -0
  46. schemathesis/core/control.py +2 -0
  47. schemathesis/core/curl.py +100 -0
  48. schemathesis/core/deserialization.py +210 -0
  49. schemathesis/core/errors.py +588 -0
  50. schemathesis/core/failures.py +316 -0
  51. schemathesis/core/fs.py +19 -0
  52. schemathesis/core/hooks.py +20 -0
  53. schemathesis/core/jsonschema/__init__.py +13 -0
  54. schemathesis/core/jsonschema/bundler.py +183 -0
  55. schemathesis/core/jsonschema/keywords.py +40 -0
  56. schemathesis/core/jsonschema/references.py +222 -0
  57. schemathesis/core/jsonschema/types.py +41 -0
  58. schemathesis/core/lazy_import.py +15 -0
  59. schemathesis/core/loaders.py +107 -0
  60. schemathesis/core/marks.py +66 -0
  61. schemathesis/core/media_types.py +79 -0
  62. schemathesis/core/output/__init__.py +46 -0
  63. schemathesis/core/output/sanitization.py +54 -0
  64. schemathesis/core/parameters.py +45 -0
  65. schemathesis/core/rate_limit.py +60 -0
  66. schemathesis/core/registries.py +34 -0
  67. schemathesis/core/result.py +27 -0
  68. schemathesis/core/schema_analysis.py +17 -0
  69. schemathesis/core/shell.py +203 -0
  70. schemathesis/core/transforms.py +144 -0
  71. schemathesis/core/transport.py +223 -0
  72. schemathesis/core/validation.py +73 -0
  73. schemathesis/core/version.py +7 -0
  74. schemathesis/engine/__init__.py +28 -0
  75. schemathesis/engine/context.py +152 -0
  76. schemathesis/engine/control.py +44 -0
  77. schemathesis/engine/core.py +201 -0
  78. schemathesis/engine/errors.py +446 -0
  79. schemathesis/engine/events.py +284 -0
  80. schemathesis/engine/observations.py +42 -0
  81. schemathesis/engine/phases/__init__.py +108 -0
  82. schemathesis/engine/phases/analysis.py +28 -0
  83. schemathesis/engine/phases/probes.py +172 -0
  84. schemathesis/engine/phases/stateful/__init__.py +68 -0
  85. schemathesis/engine/phases/stateful/_executor.py +364 -0
  86. schemathesis/engine/phases/stateful/context.py +85 -0
  87. schemathesis/engine/phases/unit/__init__.py +220 -0
  88. schemathesis/engine/phases/unit/_executor.py +459 -0
  89. schemathesis/engine/phases/unit/_pool.py +82 -0
  90. schemathesis/engine/recorder.py +254 -0
  91. schemathesis/errors.py +47 -0
  92. schemathesis/filters.py +395 -0
  93. schemathesis/generation/__init__.py +25 -0
  94. schemathesis/generation/case.py +478 -0
  95. schemathesis/generation/coverage.py +1528 -0
  96. schemathesis/generation/hypothesis/__init__.py +121 -0
  97. schemathesis/generation/hypothesis/builder.py +992 -0
  98. schemathesis/generation/hypothesis/examples.py +56 -0
  99. schemathesis/generation/hypothesis/given.py +66 -0
  100. schemathesis/generation/hypothesis/reporting.py +285 -0
  101. schemathesis/generation/meta.py +227 -0
  102. schemathesis/generation/metrics.py +93 -0
  103. schemathesis/generation/modes.py +20 -0
  104. schemathesis/generation/overrides.py +127 -0
  105. schemathesis/generation/stateful/__init__.py +37 -0
  106. schemathesis/generation/stateful/state_machine.py +294 -0
  107. schemathesis/graphql/__init__.py +15 -0
  108. schemathesis/graphql/checks.py +109 -0
  109. schemathesis/graphql/loaders.py +285 -0
  110. schemathesis/hooks.py +270 -91
  111. schemathesis/openapi/__init__.py +13 -0
  112. schemathesis/openapi/checks.py +467 -0
  113. schemathesis/openapi/generation/__init__.py +0 -0
  114. schemathesis/openapi/generation/filters.py +72 -0
  115. schemathesis/openapi/loaders.py +315 -0
  116. schemathesis/pytest/__init__.py +5 -0
  117. schemathesis/pytest/control_flow.py +7 -0
  118. schemathesis/pytest/lazy.py +341 -0
  119. schemathesis/pytest/loaders.py +36 -0
  120. schemathesis/pytest/plugin.py +357 -0
  121. schemathesis/python/__init__.py +0 -0
  122. schemathesis/python/asgi.py +12 -0
  123. schemathesis/python/wsgi.py +12 -0
  124. schemathesis/schemas.py +683 -247
  125. schemathesis/specs/graphql/__init__.py +0 -1
  126. schemathesis/specs/graphql/nodes.py +27 -0
  127. schemathesis/specs/graphql/scalars.py +86 -0
  128. schemathesis/specs/graphql/schemas.py +395 -123
  129. schemathesis/specs/graphql/validation.py +33 -0
  130. schemathesis/specs/openapi/__init__.py +9 -1
  131. schemathesis/specs/openapi/_hypothesis.py +578 -317
  132. schemathesis/specs/openapi/adapter/__init__.py +10 -0
  133. schemathesis/specs/openapi/adapter/parameters.py +729 -0
  134. schemathesis/specs/openapi/adapter/protocol.py +59 -0
  135. schemathesis/specs/openapi/adapter/references.py +19 -0
  136. schemathesis/specs/openapi/adapter/responses.py +368 -0
  137. schemathesis/specs/openapi/adapter/security.py +144 -0
  138. schemathesis/specs/openapi/adapter/v2.py +30 -0
  139. schemathesis/specs/openapi/adapter/v3_0.py +30 -0
  140. schemathesis/specs/openapi/adapter/v3_1.py +30 -0
  141. schemathesis/specs/openapi/analysis.py +96 -0
  142. schemathesis/specs/openapi/checks.py +753 -74
  143. schemathesis/specs/openapi/converter.py +176 -37
  144. schemathesis/specs/openapi/definitions.py +599 -4
  145. schemathesis/specs/openapi/examples.py +581 -165
  146. schemathesis/specs/openapi/expressions/__init__.py +52 -5
  147. schemathesis/specs/openapi/expressions/extractors.py +25 -0
  148. schemathesis/specs/openapi/expressions/lexer.py +34 -31
  149. schemathesis/specs/openapi/expressions/nodes.py +97 -46
  150. schemathesis/specs/openapi/expressions/parser.py +35 -13
  151. schemathesis/specs/openapi/formats.py +122 -0
  152. schemathesis/specs/openapi/media_types.py +75 -0
  153. schemathesis/specs/openapi/negative/__init__.py +117 -68
  154. schemathesis/specs/openapi/negative/mutations.py +294 -104
  155. schemathesis/specs/openapi/negative/utils.py +3 -6
  156. schemathesis/specs/openapi/patterns.py +458 -0
  157. schemathesis/specs/openapi/references.py +60 -81
  158. schemathesis/specs/openapi/schemas.py +648 -650
  159. schemathesis/specs/openapi/serialization.py +53 -30
  160. schemathesis/specs/openapi/stateful/__init__.py +404 -69
  161. schemathesis/specs/openapi/stateful/control.py +87 -0
  162. schemathesis/specs/openapi/stateful/dependencies/__init__.py +232 -0
  163. schemathesis/specs/openapi/stateful/dependencies/inputs.py +428 -0
  164. schemathesis/specs/openapi/stateful/dependencies/models.py +341 -0
  165. schemathesis/specs/openapi/stateful/dependencies/naming.py +491 -0
  166. schemathesis/specs/openapi/stateful/dependencies/outputs.py +34 -0
  167. schemathesis/specs/openapi/stateful/dependencies/resources.py +339 -0
  168. schemathesis/specs/openapi/stateful/dependencies/schemas.py +447 -0
  169. schemathesis/specs/openapi/stateful/inference.py +254 -0
  170. schemathesis/specs/openapi/stateful/links.py +219 -78
  171. schemathesis/specs/openapi/types/__init__.py +3 -0
  172. schemathesis/specs/openapi/types/common.py +23 -0
  173. schemathesis/specs/openapi/types/v2.py +129 -0
  174. schemathesis/specs/openapi/types/v3.py +134 -0
  175. schemathesis/specs/openapi/utils.py +7 -6
  176. schemathesis/specs/openapi/warnings.py +75 -0
  177. schemathesis/transport/__init__.py +224 -0
  178. schemathesis/transport/asgi.py +26 -0
  179. schemathesis/transport/prepare.py +126 -0
  180. schemathesis/transport/requests.py +278 -0
  181. schemathesis/transport/serialization.py +329 -0
  182. schemathesis/transport/wsgi.py +175 -0
  183. schemathesis-4.4.2.dist-info/METADATA +213 -0
  184. schemathesis-4.4.2.dist-info/RECORD +192 -0
  185. {schemathesis-3.13.0.dist-info → schemathesis-4.4.2.dist-info}/WHEEL +1 -1
  186. schemathesis-4.4.2.dist-info/entry_points.txt +6 -0
  187. {schemathesis-3.13.0.dist-info → schemathesis-4.4.2.dist-info/licenses}/LICENSE +1 -1
  188. schemathesis/_compat.py +0 -41
  189. schemathesis/_hypothesis.py +0 -115
  190. schemathesis/cli/callbacks.py +0 -188
  191. schemathesis/cli/cassettes.py +0 -253
  192. schemathesis/cli/context.py +0 -36
  193. schemathesis/cli/debug.py +0 -21
  194. schemathesis/cli/handlers.py +0 -11
  195. schemathesis/cli/junitxml.py +0 -41
  196. schemathesis/cli/options.py +0 -51
  197. schemathesis/cli/output/__init__.py +0 -1
  198. schemathesis/cli/output/default.py +0 -508
  199. schemathesis/cli/output/short.py +0 -40
  200. schemathesis/constants.py +0 -79
  201. schemathesis/exceptions.py +0 -207
  202. schemathesis/extra/_aiohttp.py +0 -27
  203. schemathesis/extra/_flask.py +0 -10
  204. schemathesis/extra/_server.py +0 -16
  205. schemathesis/extra/pytest_plugin.py +0 -216
  206. schemathesis/failures.py +0 -131
  207. schemathesis/fixups/__init__.py +0 -29
  208. schemathesis/fixups/fast_api.py +0 -30
  209. schemathesis/lazy.py +0 -227
  210. schemathesis/models.py +0 -1041
  211. schemathesis/parameters.py +0 -88
  212. schemathesis/runner/__init__.py +0 -460
  213. schemathesis/runner/events.py +0 -240
  214. schemathesis/runner/impl/__init__.py +0 -3
  215. schemathesis/runner/impl/core.py +0 -755
  216. schemathesis/runner/impl/solo.py +0 -85
  217. schemathesis/runner/impl/threadpool.py +0 -367
  218. schemathesis/runner/serialization.py +0 -189
  219. schemathesis/serializers.py +0 -233
  220. schemathesis/service/__init__.py +0 -3
  221. schemathesis/service/client.py +0 -46
  222. schemathesis/service/constants.py +0 -12
  223. schemathesis/service/events.py +0 -39
  224. schemathesis/service/handler.py +0 -39
  225. schemathesis/service/models.py +0 -7
  226. schemathesis/service/serialization.py +0 -153
  227. schemathesis/service/worker.py +0 -40
  228. schemathesis/specs/graphql/loaders.py +0 -215
  229. schemathesis/specs/openapi/constants.py +0 -7
  230. schemathesis/specs/openapi/expressions/context.py +0 -12
  231. schemathesis/specs/openapi/expressions/pointers.py +0 -29
  232. schemathesis/specs/openapi/filters.py +0 -44
  233. schemathesis/specs/openapi/links.py +0 -302
  234. schemathesis/specs/openapi/loaders.py +0 -453
  235. schemathesis/specs/openapi/parameters.py +0 -413
  236. schemathesis/specs/openapi/security.py +0 -129
  237. schemathesis/specs/openapi/validation.py +0 -24
  238. schemathesis/stateful.py +0 -349
  239. schemathesis/targets.py +0 -32
  240. schemathesis/types.py +0 -38
  241. schemathesis/utils.py +0 -436
  242. schemathesis-3.13.0.dist-info/METADATA +0 -202
  243. schemathesis-3.13.0.dist-info/RECORD +0 -91
  244. schemathesis-3.13.0.dist-info/entry_points.txt +0 -6
  245. /schemathesis/{extra → cli/ext}/__init__.py +0 -0
@@ -1,91 +0,0 @@
1
- schemathesis/__init__.py,sha256=pVkYSftjiRNiVyBbZEsRT0Ikx_g_Y5-Giw_LvP86RBc,900
2
- schemathesis/_compat.py,sha256=N2IJ-Y80eQfYVAqLHfgy_lX242rj08m2rJLYnjHnkkg,1406
3
- schemathesis/_hypothesis.py,sha256=cgiMpUh8HEScPJKk1JoPBIrAz1GONpw3TX2BORsxXeU,5294
4
- schemathesis/checks.py,sha256=V6R8R901D9ZkmGJRpSRseV3FwVhAGTIbBGPMAnC7jAE,1166
5
- schemathesis/cli/__init__.py,sha256=zKdH6ACp5dRMnQBTSGSUduhGUpz5RzLmk_jlwO-VwiE,36121
6
- schemathesis/cli/callbacks.py,sha256=9ZNK_VQiFWPQtBKQTzxO0TgYXjgNtnuwPpjePnGnN-Y,7221
7
- schemathesis/cli/cassettes.py,sha256=G6aDhxosKy6es_NyuSJoTur2JA0XVzGDck3GGB5llBc,8942
8
- schemathesis/cli/constants.py,sha256=OpyINEiuVqdsJ9bn3NOBoQeD-bdxKFbawLKkgahk2uw,63
9
- schemathesis/cli/context.py,sha256=XzkKddNLwl0gU39aNDg8mR4OdxUTGtDTjI0xzLoQjd4,1648
10
- schemathesis/cli/debug.py,sha256=tgZDU9aopuKh-r4ESwA45S_RNhdf4O9XDeinG0C_vyY,579
11
- schemathesis/cli/handlers.py,sha256=rnhFGGYI4z9lKGugj206btJP80isopBzFR1LihfGFuM,293
12
- schemathesis/cli/junitxml.py,sha256=XATXQDOhMFttPrCCs5A8AMRk8dzGneTbDz7nrvFq_Oo,1933
13
- schemathesis/cli/options.py,sha256=YTEzsk1yVTDM2RDCA9iKMXX5jH4vQ3T45-cw8xR1kdY,1795
14
- schemathesis/cli/output/__init__.py,sha256=AXaUzQ1nhQ-vXhW4-X-91vE2VQtEcCOrGtQXXNN55iQ,29
15
- schemathesis/cli/output/default.py,sha256=x_02HUHtOD_Y08SZDMtm1dcj30mVFD9CU5nAnAFlGBI,20603
16
- schemathesis/cli/output/short.py,sha256=Ui21Ko7eY5igs4CyNFb88-KRXKmMjz776l9aCHpYq8o,1628
17
- schemathesis/constants.py,sha256=UjodxKUXTpxq_eLTXi8QebXsldRgZ1XJgGOzPDV5lNU,2518
18
- schemathesis/exceptions.py,sha256=1xjgsGviHSGZXz7p8LwWpQOO5s2tSFU7WNDj0DXaSuk,7001
19
- schemathesis/extra/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
20
- schemathesis/extra/_aiohttp.py,sha256=CtebXNceFdovCImZMGzUel4ypIcDuSuHbYVQXzFo8eI,952
21
- schemathesis/extra/_flask.py,sha256=_VEnaEOngLpyyXU7tZ8L2Fpeg1j46c9AvasM8e6R4V4,285
22
- schemathesis/extra/_server.py,sha256=wkEe5SUdeA9dmhWR8FCevY8YFRx5vFKwD779e20P0Ek,518
23
- schemathesis/extra/pytest_plugin.py,sha256=qhK-ehuetNSot2E5slbCRogNrRzWFMFbjr9pk-lUVkg,8697
24
- schemathesis/failures.py,sha256=GiQZu0qsCebEVcuUuUmkgitKrEi8Zhp_V3lQgyHCWvk,4546
25
- schemathesis/fixups/__init__.py,sha256=7hzdDnL7eRJ9k6I7SLs5m2bSAIS8pe_6Vv3ldn1HM6E,763
26
- schemathesis/fixups/fast_api.py,sha256=Rq7EAXf0jV2No4jWcIIjkXK04bmVesZtJKIuGF8ZABk,1022
27
- schemathesis/hooks.py,sha256=-T-ua48dmKObBUg84RX78zpn1RJMVrdxxQkvC2vkiX8,9327
28
- schemathesis/lazy.py,sha256=wgVa-DEbzAYFkt9lgwddWq2onZQ1HCvzplQTj9ghmbY,9698
29
- schemathesis/models.py,sha256=i-rwft03rgulWPIVwyR5KvOn1tekFdB5L1mlCZTKzK0,40637
30
- schemathesis/parameters.py,sha256=gWNGMiPXVjI_cGN1xc0-rbko_CH7iq9he5bVZ4qLw0g,2382
31
- schemathesis/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
32
- schemathesis/runner/__init__.py,sha256=L5WePpxlk0QachpB4N-6ubxMKz5SMYmMLv_4ri-mckQ,17120
33
- schemathesis/runner/events.py,sha256=iO5YFgHztoK96I0baoSoU1IqL5uA9n1uL_PV7DObocE,9214
34
- schemathesis/runner/impl/__init__.py,sha256=1E2iME8uthYPBh9MjwVBCTFV-P3fi7AdphCCoBBspjs,199
35
- schemathesis/runner/impl/core.py,sha256=9kk8H_QG7KcFJyg8sIhECT8GXLLFFM1aqec33gyAwk0,27700
36
- schemathesis/runner/impl/solo.py,sha256=f77G2NOVT5vSQGznV4pA5DAx-sZa6JhzSzbcOvi8-z8,3144
37
- schemathesis/runner/impl/threadpool.py,sha256=LUJAZS8wOc4qmIZrKpkKRi8_Lb7bf7Slqzu5KYhzII8,13761
38
- schemathesis/runner/serialization.py,sha256=5MSfopU4zHc-ZlI9Z6NX6TVDkvZJY0xH9g-81DXVvJM,7916
39
- schemathesis/schemas.py,sha256=p9b35ZQA7EBVMoHdEjguXGypMjBsvjyxsALH7VV6RB4,14623
40
- schemathesis/serializers.py,sha256=XNvYWHZBtTLENIYJF2ZmkiNk0DckttvimpmjXA8KdvU,8343
41
- schemathesis/service/__init__.py,sha256=NU4Wx8XdA8aYgWsofm8nG6_8daoaaxeXJX3pPjID_RA,169
42
- schemathesis/service/client.py,sha256=ULWPyL6PYS_0YQloY6g1ATxbrZTy9whZeAr9FypMrjI,1868
43
- schemathesis/service/constants.py,sha256=A4ZrWDwZRfmJ_pxmrtQlRt6gPWhDgzVTxAMDB2WRTVk,470
44
- schemathesis/service/events.py,sha256=RkE8ihgAWqBSevPNeDi5tVHnHb3OIAEpxgPY6nJnmhs,938
45
- schemathesis/service/handler.py,sha256=UiKIizl8P1_0HqDgkr3VPn8v_ky0z7bf1azulkrYvrA,1361
46
- schemathesis/service/models.py,sha256=tlT6t3n3EAKtYxE5JYVR0o46-0GVIY2ZrIPOmNSKYXg,108
47
- schemathesis/service/serialization.py,sha256=tMiVdTPQaojt_PcSoW2pqMfunP_yLWDGUaL_E7lxm_U,5753
48
- schemathesis/service/worker.py,sha256=ZAZEd0sSiEafEOk_jDWKjkpZjXTEVGm9urmcRWm51cg,1560
49
- schemathesis/specs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
50
- schemathesis/specs/graphql/__init__.py,sha256=fgyHtvWNUVWismBTOqxQtgLoTighTfvMv6v6QCD_Oyc,85
51
- schemathesis/specs/graphql/loaders.py,sha256=4-hT4Yokfeyjikqfywm4PH8oKypvseS83NOaggQulHE,7359
52
- schemathesis/specs/graphql/schemas.py,sha256=CWod3Z2khRuTH25Rt5i3qUy_600woj7-zb2PldUWnWk,6322
53
- schemathesis/specs/openapi/__init__.py,sha256=HC3FLLbTcwNc_wT9-kAoj6hFCTNCBcOW8c6TlqNHk7w,120
54
- schemathesis/specs/openapi/_hypothesis.py,sha256=1XeolXY-tu0bqI2CL5ylUTi5AOiKDvBtGwPqSIaGKjU,17637
55
- schemathesis/specs/openapi/checks.py,sha256=xH9rNJzMfu-X44aU93dMy3dPFy3L9CfivqHFY34pqbc,4590
56
- schemathesis/specs/openapi/constants.py,sha256=X8Ihw40xYb_txs4x6718u1vCTJeovavr42EIUod2KGA,151
57
- schemathesis/specs/openapi/converter.py,sha256=cJqjGsvPbe1V585qrGCA8XY7oq7xv3M1mTD7U3VcGsE,2618
58
- schemathesis/specs/openapi/definitions.py,sha256=KyGHEbAkLdkpMf18m8aDD8Bp4pGRK312EGbx7DiVn5M,65299
59
- schemathesis/specs/openapi/examples.py,sha256=LfWn2bDUzpPGg6av3w7uO5JP5_u5pJM39t5lLwXD4Co,9049
60
- schemathesis/specs/openapi/expressions/__init__.py,sha256=7TZeRPpCPt0Bjzs5L--AkQnnIbDgTRnpkgYeJKma5Bc,660
61
- schemathesis/specs/openapi/expressions/context.py,sha256=dB4J-eEEw-tqVexmBfSfOWevxEcuMabIKWzR4jfjtiI,314
62
- schemathesis/specs/openapi/expressions/errors.py,sha256=YLVhps-sYcslgVaahfcUYxUSHlIfWL-rQMeT5PZSMZ8,219
63
- schemathesis/specs/openapi/expressions/lexer.py,sha256=WYo-4-KzxJomxqHhlXBBMMlFuD8vW5iTYoLclrIL420,4046
64
- schemathesis/specs/openapi/expressions/nodes.py,sha256=iUIjwI56N7WENB_b9WALa_3A4kDarAaDW1DoVpQ4UZo,3707
65
- schemathesis/specs/openapi/expressions/parser.py,sha256=eO-hJVJYRUb4v51HLFkRylMvXzLgjW4CKEknsKJsGVQ,3520
66
- schemathesis/specs/openapi/expressions/pointers.py,sha256=skGuCr4MaYjmukapLxkk5M_MJL9a1H7nGc6QkwPFJjg,879
67
- schemathesis/specs/openapi/filters.py,sha256=n2F4tV_j1RBTBfQj_n9AbIiZKw0gpV0xHX7EJS5raF4,1335
68
- schemathesis/specs/openapi/links.py,sha256=qBY8MgbM2XM8FrWEXb41kjmwh5G6KvYXZOZk69X9gDI,14839
69
- schemathesis/specs/openapi/loaders.py,sha256=OV4cqCLrI0zW89j4uAWhOlJDmc1SoogzMX-jZ28Nb-I,16098
70
- schemathesis/specs/openapi/negative/__init__.py,sha256=Zi4QK8xzVHj24h7Fwa4RSuSgWpFCZVDq7cyfBRkHayE,3191
71
- schemathesis/specs/openapi/negative/mutations.py,sha256=7TlBWIkekdp1b0xlA2W6FDH86LcQsa3hAE-e1mc4dyk,18308
72
- schemathesis/specs/openapi/negative/types.py,sha256=a7buCcVxNBG6ILBM3A7oNTAX0lyDseEtZndBuej8MbI,174
73
- schemathesis/specs/openapi/negative/utils.py,sha256=zakA5_4ac8iBL1gV260_8b4ootsoDe42zneT20HZEBE,269
74
- schemathesis/specs/openapi/parameters.py,sha256=x0WuHGqJq-q17nolJjZb47041duAb02hf6hUS32EBBw,14101
75
- schemathesis/specs/openapi/references.py,sha256=ECOVOpBbeTVh1fhwOcOSRVzyda1amonogxy6jpD1nTo,4496
76
- schemathesis/specs/openapi/schemas.py,sha256=Y_C3G2GQGAApWz5OYXYPlmwa3VLHla9s26FDQiAF3EI,40049
77
- schemathesis/specs/openapi/security.py,sha256=_QLRs7WXeBjYnbHVaGaYgHXEpfggU6N3iDpBMdO6ARA,6076
78
- schemathesis/specs/openapi/serialization.py,sha256=LjzXlBWRV6RleYlAPKAw-NuAgSJHfo30X7UMwV3NVV8,11457
79
- schemathesis/specs/openapi/stateful/__init__.py,sha256=yjC9WVsFCwtIGaVH9MPAhvbzyq8Qk5-GDBJLvZ7LJQs,3787
80
- schemathesis/specs/openapi/stateful/links.py,sha256=7IBIhulQTwLFAa9ywk5dq_jqzVPmz4z5bD2A9S2jMIo,3245
81
- schemathesis/specs/openapi/utils.py,sha256=h48B-sd7E3jZpOntjS2YnigSLiDd2qoGFYPH1RmMwmE,488
82
- schemathesis/specs/openapi/validation.py,sha256=HsxtU9osO1m1McDeH3C5vEYd3QmXJn97WnihdVos9W4,1006
83
- schemathesis/stateful.py,sha256=t-p9a2nm-W8XSW9vdrZlGOhc1BxWyGXX6dNahQsndkk,14066
84
- schemathesis/targets.py,sha256=Kzqs6LKq0n-JY0FKD8cWK3YcWcqXJkXnKskZcJ_3ZDI,850
85
- schemathesis/types.py,sha256=G4DZUwL1e6kuxJvfef-WUz5lG1zj9w5lOPVfqSJAYkI,1280
86
- schemathesis/utils.py,sha256=RLVrmjKfqBRLkKANDab305sbsEhEak3uJzNnr9TXRTw,13549
87
- schemathesis-3.13.0.dist-info/entry_points.txt,sha256=-7uhuQ8JC-xkl-MEPrlUvwKUtdFHP6Ugkh3JT2yx-Gc,120
88
- schemathesis-3.13.0.dist-info/LICENSE,sha256=PsPYgrDhZ7g9uwihJXNG-XVb55wj2uYhkl2DD8oAzY0,1103
89
- schemathesis-3.13.0.dist-info/WHEEL,sha256=y3eDiaFVSNTPbgzfNn0nYn5tEn1cX6WrdetDlQM4xWw,83
90
- schemathesis-3.13.0.dist-info/METADATA,sha256=FYC7J411KeOdvo4E2amDWY-upFOsOEddYtEONqrUhLY,8735
91
- schemathesis-3.13.0.dist-info/RECORD,,
@@ -1,6 +0,0 @@
1
- [console_scripts]
2
- schemathesis=schemathesis.cli:schemathesis
3
-
4
- [pytest11]
5
- schemathesis=schemathesis.extra.pytest_plugin
6
-
File without changes