schemathesis 3.15.4__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 (251) 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 -1219
  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 +682 -257
  125. schemathesis/specs/graphql/__init__.py +0 -1
  126. schemathesis/specs/graphql/nodes.py +26 -2
  127. schemathesis/specs/graphql/scalars.py +77 -12
  128. schemathesis/specs/graphql/schemas.py +367 -148
  129. schemathesis/specs/graphql/validation.py +33 -0
  130. schemathesis/specs/openapi/__init__.py +9 -1
  131. schemathesis/specs/openapi/_hypothesis.py +555 -318
  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 +748 -82
  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 +93 -73
  154. schemathesis/specs/openapi/negative/mutations.py +294 -103
  155. schemathesis/specs/openapi/negative/utils.py +0 -9
  156. schemathesis/specs/openapi/patterns.py +458 -0
  157. schemathesis/specs/openapi/references.py +60 -81
  158. schemathesis/specs/openapi/schemas.py +647 -666
  159. schemathesis/specs/openapi/serialization.py +53 -30
  160. schemathesis/specs/openapi/stateful/__init__.py +403 -68
  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.15.4.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.15.4.dist-info → schemathesis-4.4.2.dist-info/licenses}/LICENSE +1 -1
  188. schemathesis/_compat.py +0 -57
  189. schemathesis/_hypothesis.py +0 -123
  190. schemathesis/auth.py +0 -214
  191. schemathesis/cli/callbacks.py +0 -240
  192. schemathesis/cli/cassettes.py +0 -351
  193. schemathesis/cli/context.py +0 -38
  194. schemathesis/cli/debug.py +0 -21
  195. schemathesis/cli/handlers.py +0 -11
  196. schemathesis/cli/junitxml.py +0 -41
  197. schemathesis/cli/options.py +0 -70
  198. schemathesis/cli/output/__init__.py +0 -1
  199. schemathesis/cli/output/default.py +0 -521
  200. schemathesis/cli/output/short.py +0 -40
  201. schemathesis/constants.py +0 -88
  202. schemathesis/exceptions.py +0 -257
  203. schemathesis/extra/_aiohttp.py +0 -27
  204. schemathesis/extra/_flask.py +0 -10
  205. schemathesis/extra/_server.py +0 -16
  206. schemathesis/extra/pytest_plugin.py +0 -251
  207. schemathesis/failures.py +0 -145
  208. schemathesis/fixups/__init__.py +0 -29
  209. schemathesis/fixups/fast_api.py +0 -30
  210. schemathesis/graphql.py +0 -5
  211. schemathesis/internal.py +0 -6
  212. schemathesis/lazy.py +0 -301
  213. schemathesis/models.py +0 -1113
  214. schemathesis/parameters.py +0 -91
  215. schemathesis/runner/__init__.py +0 -470
  216. schemathesis/runner/events.py +0 -242
  217. schemathesis/runner/impl/__init__.py +0 -3
  218. schemathesis/runner/impl/core.py +0 -791
  219. schemathesis/runner/impl/solo.py +0 -85
  220. schemathesis/runner/impl/threadpool.py +0 -367
  221. schemathesis/runner/serialization.py +0 -206
  222. schemathesis/serializers.py +0 -253
  223. schemathesis/service/__init__.py +0 -18
  224. schemathesis/service/auth.py +0 -10
  225. schemathesis/service/client.py +0 -62
  226. schemathesis/service/constants.py +0 -25
  227. schemathesis/service/events.py +0 -39
  228. schemathesis/service/handler.py +0 -46
  229. schemathesis/service/hosts.py +0 -74
  230. schemathesis/service/metadata.py +0 -42
  231. schemathesis/service/models.py +0 -21
  232. schemathesis/service/serialization.py +0 -184
  233. schemathesis/service/worker.py +0 -39
  234. schemathesis/specs/graphql/loaders.py +0 -215
  235. schemathesis/specs/openapi/constants.py +0 -7
  236. schemathesis/specs/openapi/expressions/context.py +0 -12
  237. schemathesis/specs/openapi/expressions/pointers.py +0 -29
  238. schemathesis/specs/openapi/filters.py +0 -44
  239. schemathesis/specs/openapi/links.py +0 -303
  240. schemathesis/specs/openapi/loaders.py +0 -453
  241. schemathesis/specs/openapi/parameters.py +0 -430
  242. schemathesis/specs/openapi/security.py +0 -129
  243. schemathesis/specs/openapi/validation.py +0 -24
  244. schemathesis/stateful.py +0 -358
  245. schemathesis/targets.py +0 -32
  246. schemathesis/types.py +0 -38
  247. schemathesis/utils.py +0 -475
  248. schemathesis-3.15.4.dist-info/METADATA +0 -202
  249. schemathesis-3.15.4.dist-info/RECORD +0 -99
  250. schemathesis-3.15.4.dist-info/entry_points.txt +0 -7
  251. /schemathesis/{extra → cli/ext}/__init__.py +0 -0
@@ -1,99 +0,0 @@
1
- schemathesis/__init__.py,sha256=8boyVR04M1uvOmSvQso3Cz_E5eBi1hyaW_dzuQCzRPw,906
2
- schemathesis/_compat.py,sha256=_rlxzmTVxy8rnciznyz0_gbKjCf4ga-yIsCabuzHum8,1768
3
- schemathesis/_hypothesis.py,sha256=MegDC2oipykpA4sGsK7TbmOR0LK_y2EW42IKY86gzKc,5643
4
- schemathesis/auth.py,sha256=FUTd_PSdj6kIwSc1WMnaeZM6ClDfocLQ9OSde_l-HL4,7771
5
- schemathesis/checks.py,sha256=V6R8R901D9ZkmGJRpSRseV3FwVhAGTIbBGPMAnC7jAE,1166
6
- schemathesis/cli/__init__.py,sha256=DJMcyBHJkVGv0gMfOk1WyJ1fySVy36HhRkOfMQkEppU,43767
7
- schemathesis/cli/callbacks.py,sha256=i0hjDl_zhiGxhFKxc9B3kueqFxBxEXc1L4ZUpcKBBxw,8718
8
- schemathesis/cli/cassettes.py,sha256=-Nc-2vZyUM6CU-UWofIhsJN9ANI72nJOfJoCs45PxnQ,12335
9
- schemathesis/cli/constants.py,sha256=OpyINEiuVqdsJ9bn3NOBoQeD-bdxKFbawLKkgahk2uw,63
10
- schemathesis/cli/context.py,sha256=VwFo89PbJ4NdDJ1N81b9Db7NMTFRg-qzzHu59JDaA_Q,1739
11
- schemathesis/cli/debug.py,sha256=tgZDU9aopuKh-r4ESwA45S_RNhdf4O9XDeinG0C_vyY,579
12
- schemathesis/cli/handlers.py,sha256=rnhFGGYI4z9lKGugj206btJP80isopBzFR1LihfGFuM,293
13
- schemathesis/cli/junitxml.py,sha256=XATXQDOhMFttPrCCs5A8AMRk8dzGneTbDz7nrvFq_Oo,1933
14
- schemathesis/cli/options.py,sha256=lPIi89J8QladAmhN5vqpMQBNhT7GXqbIcZHSucnkBpw,2583
15
- schemathesis/cli/output/__init__.py,sha256=AXaUzQ1nhQ-vXhW4-X-91vE2VQtEcCOrGtQXXNN55iQ,29
16
- schemathesis/cli/output/default.py,sha256=8b3mHBlBrJhpHRM429VFWpcruou4FRGh_mutLG3tloI,21090
17
- schemathesis/cli/output/short.py,sha256=Ui21Ko7eY5igs4CyNFb88-KRXKmMjz776l9aCHpYq8o,1628
18
- schemathesis/constants.py,sha256=vFdhosU6XHEbT370zU1rjttfNCZlCKIqkqZHZzVUvek,2957
19
- schemathesis/exceptions.py,sha256=rKVIQpg4sVll3qA9ajT79QJ9qVIGJo0O2OxeymtQ6a0,8760
20
- schemathesis/extra/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
21
- schemathesis/extra/_aiohttp.py,sha256=CtebXNceFdovCImZMGzUel4ypIcDuSuHbYVQXzFo8eI,952
22
- schemathesis/extra/_flask.py,sha256=_VEnaEOngLpyyXU7tZ8L2Fpeg1j46c9AvasM8e6R4V4,285
23
- schemathesis/extra/_server.py,sha256=wkEe5SUdeA9dmhWR8FCevY8YFRx5vFKwD779e20P0Ek,518
24
- schemathesis/extra/pytest_plugin.py,sha256=nFhCMX4Hj3vs2zcxco-7xWTGqo1c2rRd-7koPGJP_M0,10017
25
- schemathesis/failures.py,sha256=nw7fcy8Rj-eRpTjalxl9mmoxm_dii0QTMBmJfTta5VE,5353
26
- schemathesis/fixups/__init__.py,sha256=7hzdDnL7eRJ9k6I7SLs5m2bSAIS8pe_6Vv3ldn1HM6E,763
27
- schemathesis/fixups/fast_api.py,sha256=Rq7EAXf0jV2No4jWcIIjkXK04bmVesZtJKIuGF8ZABk,1022
28
- schemathesis/graphql.py,sha256=FAk5AfOANqSPus53ZauEMHkUpa_dnETZ8i0VS2-dHTc,228
29
- schemathesis/hooks.py,sha256=-T-ua48dmKObBUg84RX78zpn1RJMVrdxxQkvC2vkiX8,9327
30
- schemathesis/internal.py,sha256=KDFEDOkwGj5gl2yj3PiKjirTzt32kjHd2M8BezdhFHA,155
31
- schemathesis/lazy.py,sha256=p1bqAX5nVZBlWaDL21n-zXvGWIdWVJk1ogIJM1hpZSY,13359
32
- schemathesis/models.py,sha256=nIiqdxow2Pu-IR6w-rCTEQ24hmTzaOnk-Cx29hzSXAQ,44159
33
- schemathesis/parameters.py,sha256=1hoqBmNGEwV4IjB6hW4dcnsLdoazvKKWyA8Ir69qPs0,2480
34
- schemathesis/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
35
- schemathesis/runner/__init__.py,sha256=lF74uVleQWN_bQiWrJ6Y6l1ikzPiu64R4o_HD8iosi8,17626
36
- schemathesis/runner/events.py,sha256=1CozBqwCfoEo4sMQdvD1OMGaN2tE64j1la6ghvFtdQ4,9319
37
- schemathesis/runner/impl/__init__.py,sha256=1E2iME8uthYPBh9MjwVBCTFV-P3fi7AdphCCoBBspjs,199
38
- schemathesis/runner/impl/core.py,sha256=bz7W6_Tyjsg3TES9X8lBQQvMEeL2odC_MTAxCaKBT14,29479
39
- schemathesis/runner/impl/solo.py,sha256=f77G2NOVT5vSQGznV4pA5DAx-sZa6JhzSzbcOvi8-z8,3144
40
- schemathesis/runner/impl/threadpool.py,sha256=LUJAZS8wOc4qmIZrKpkKRi8_Lb7bf7Slqzu5KYhzII8,13761
41
- schemathesis/runner/serialization.py,sha256=mncpWkGqlhjF-00stID46lPsQrDlSCFK1AjgxC3Rqb8,8684
42
- schemathesis/schemas.py,sha256=62_dhEWFpg6uPYe3dzqJE9DB5OLaE5BN2ntuhly_mYQ,15118
43
- schemathesis/serializers.py,sha256=8_eN1Ep9znJ9AyTrVokr0lk8fDLR-2aJsyi1XmXl-J0,9215
44
- schemathesis/service/__init__.py,sha256=__6NgWEhgCWrjbnz7Uwjs9JKS9sudNCDOM24Q8BFyX4,446
45
- schemathesis/service/auth.py,sha256=QqMYGN0ZW3EuEZTsyj3G7ShZp_wPyiQpGn0QNjJI70U,444
46
- schemathesis/service/client.py,sha256=vVA3_ho6v0j6nkLFLaoRh5JuBESAyQE--uTPq86FbgI,2597
47
- schemathesis/service/constants.py,sha256=63PSIUlRMM6o1G6d1cc3AFwP1wQ7KEg-dkrkVLHAhZc,931
48
- schemathesis/service/events.py,sha256=RkE8ihgAWqBSevPNeDi5tVHnHb3OIAEpxgPY6nJnmhs,938
49
- schemathesis/service/handler.py,sha256=wEYyvnMYaOgR-nJRVCZ36g62YZ_PeWOUS6UH_CdwKn8,1502
50
- schemathesis/service/hosts.py,sha256=vhRNtaX1cYauRr2CA8SDPvF5Kn-qnCOFlvOf1_Qr4-Y,2242
51
- schemathesis/service/metadata.py,sha256=MDJiwHu7wdL9Rji83Cn2YvkypVYhnqLP_zmkkoB4J1c,1220
52
- schemathesis/service/models.py,sha256=-LVln7-eXU9Q2r4_s2udXj7kmWmn7zR4DqMGPvUPhmo,352
53
- schemathesis/service/serialization.py,sha256=RK1qCU8cGcAUzpKazFuD5kcw9cSmG5O5PV6siVP2NI0,6805
54
- schemathesis/service/worker.py,sha256=g2XbVhu97r7HH_ifzdYuI5lyYbVPAwmmx69Ftw7xmOI,1521
55
- schemathesis/specs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
56
- schemathesis/specs/graphql/__init__.py,sha256=fgyHtvWNUVWismBTOqxQtgLoTighTfvMv6v6QCD_Oyc,85
57
- schemathesis/specs/graphql/loaders.py,sha256=4-hT4Yokfeyjikqfywm4PH8oKypvseS83NOaggQulHE,7359
58
- schemathesis/specs/graphql/nodes.py,sha256=eC0FDtQDlPO4NVpVaHZlRpVQB3A2FS6mQfR5rmdVa7I,164
59
- schemathesis/specs/graphql/scalars.py,sha256=rG7Gvl20O4xFtI2Vco_DgEvk4w5mX37flRY_QxGcC8g,835
60
- schemathesis/specs/graphql/schemas.py,sha256=mKOAZVMpJR9LRyOCnv8WH0bqVyyBZl4hm_49UGF20ts,8286
61
- schemathesis/specs/openapi/__init__.py,sha256=HC3FLLbTcwNc_wT9-kAoj6hFCTNCBcOW8c6TlqNHk7w,120
62
- schemathesis/specs/openapi/_hypothesis.py,sha256=6f-UCcNfVBAuXVR-FgmJErQnwwEHb4aqrOgX6tiN9TU,19172
63
- schemathesis/specs/openapi/checks.py,sha256=B0kJdFs5dtnub_9-R1i-QCa7KnLse0bIAIxrOmJzvEE,5238
64
- schemathesis/specs/openapi/constants.py,sha256=X8Ihw40xYb_txs4x6718u1vCTJeovavr42EIUod2KGA,151
65
- schemathesis/specs/openapi/converter.py,sha256=cJqjGsvPbe1V585qrGCA8XY7oq7xv3M1mTD7U3VcGsE,2618
66
- schemathesis/specs/openapi/definitions.py,sha256=KyGHEbAkLdkpMf18m8aDD8Bp4pGRK312EGbx7DiVn5M,65299
67
- schemathesis/specs/openapi/examples.py,sha256=LfWn2bDUzpPGg6av3w7uO5JP5_u5pJM39t5lLwXD4Co,9049
68
- schemathesis/specs/openapi/expressions/__init__.py,sha256=7TZeRPpCPt0Bjzs5L--AkQnnIbDgTRnpkgYeJKma5Bc,660
69
- schemathesis/specs/openapi/expressions/context.py,sha256=dB4J-eEEw-tqVexmBfSfOWevxEcuMabIKWzR4jfjtiI,314
70
- schemathesis/specs/openapi/expressions/errors.py,sha256=YLVhps-sYcslgVaahfcUYxUSHlIfWL-rQMeT5PZSMZ8,219
71
- schemathesis/specs/openapi/expressions/lexer.py,sha256=WYo-4-KzxJomxqHhlXBBMMlFuD8vW5iTYoLclrIL420,4046
72
- schemathesis/specs/openapi/expressions/nodes.py,sha256=iUIjwI56N7WENB_b9WALa_3A4kDarAaDW1DoVpQ4UZo,3707
73
- schemathesis/specs/openapi/expressions/parser.py,sha256=eO-hJVJYRUb4v51HLFkRylMvXzLgjW4CKEknsKJsGVQ,3520
74
- schemathesis/specs/openapi/expressions/pointers.py,sha256=skGuCr4MaYjmukapLxkk5M_MJL9a1H7nGc6QkwPFJjg,879
75
- schemathesis/specs/openapi/filters.py,sha256=n2F4tV_j1RBTBfQj_n9AbIiZKw0gpV0xHX7EJS5raF4,1335
76
- schemathesis/specs/openapi/links.py,sha256=8w04rQ3IqNA1Gh_n6ghezMh8gTsgKjyDUCcIbA2Yo10,14912
77
- schemathesis/specs/openapi/loaders.py,sha256=OV4cqCLrI0zW89j4uAWhOlJDmc1SoogzMX-jZ28Nb-I,16098
78
- schemathesis/specs/openapi/negative/__init__.py,sha256=7K-onT95lc9CMR_tFCM8Qh10Pu_Fpq7O73gtJR0LD9E,4148
79
- schemathesis/specs/openapi/negative/mutations.py,sha256=p-Q09rxB7Vq1kii9TaIo0xPJtGehFAEW-oEpbyMLgNM,18255
80
- schemathesis/specs/openapi/negative/types.py,sha256=a7buCcVxNBG6ILBM3A7oNTAX0lyDseEtZndBuej8MbI,174
81
- schemathesis/specs/openapi/negative/utils.py,sha256=puLWlvxIKrLMRHd5HMpfFluSyVnNig--MyEUfha9N94,411
82
- schemathesis/specs/openapi/parameters.py,sha256=OJC68fUP6LlfUZnmv4fE2WEM-OtSnrIZNUUXXR1jwt8,14979
83
- schemathesis/specs/openapi/references.py,sha256=ECOVOpBbeTVh1fhwOcOSRVzyda1amonogxy6jpD1nTo,4496
84
- schemathesis/specs/openapi/schemas.py,sha256=ZOIQgYpzw377PMnhuAPiJmdxz7cSUjHj4QFqsUGWkBY,40770
85
- schemathesis/specs/openapi/security.py,sha256=j-4ckCMK93VbUy2RawDOoW7_Gz-gUhCp8ISV5JcMQMs,6146
86
- schemathesis/specs/openapi/serialization.py,sha256=LjzXlBWRV6RleYlAPKAw-NuAgSJHfo30X7UMwV3NVV8,11457
87
- schemathesis/specs/openapi/stateful/__init__.py,sha256=hCIFNisY9qFINL3E5tqA10Im5DmSK_NIRb4Ur9BhDo4,3811
88
- schemathesis/specs/openapi/stateful/links.py,sha256=7IBIhulQTwLFAa9ywk5dq_jqzVPmz4z5bD2A9S2jMIo,3245
89
- schemathesis/specs/openapi/utils.py,sha256=h48B-sd7E3jZpOntjS2YnigSLiDd2qoGFYPH1RmMwmE,488
90
- schemathesis/specs/openapi/validation.py,sha256=fa5IpK4Un5oTaVEJg0Zi-7hxzUnuNsP5Klxpzshqoco,989
91
- schemathesis/stateful.py,sha256=2f0x4_jnWfgScdvz4XoLzujMWdomo70jBKeiuIU5nJk,14486
92
- schemathesis/targets.py,sha256=Kzqs6LKq0n-JY0FKD8cWK3YcWcqXJkXnKskZcJ_3ZDI,850
93
- schemathesis/types.py,sha256=G4DZUwL1e6kuxJvfef-WUz5lG1zj9w5lOPVfqSJAYkI,1280
94
- schemathesis/utils.py,sha256=QfWOW9hhDAMaSjDtlnlyH0gjcVgH9vJQuHwGh64hiJI,15179
95
- schemathesis-3.15.4.dist-info/entry_points.txt,sha256=ulPq_cHRu4HakzgxTXwRotRYjfei0_jb50IISFZ4Cds,153
96
- schemathesis-3.15.4.dist-info/LICENSE,sha256=PsPYgrDhZ7g9uwihJXNG-XVb55wj2uYhkl2DD8oAzY0,1103
97
- schemathesis-3.15.4.dist-info/WHEEL,sha256=DA86_h4QwwzGeRoz62o1svYt5kGEXpoUTuTtwzoTb30,83
98
- schemathesis-3.15.4.dist-info/METADATA,sha256=EW6vHxJsLrlUMOyCyjUfMBZU2ynE5kbuz1U-Wbv0QSU,8881
99
- schemathesis-3.15.4.dist-info/RECORD,,
@@ -1,7 +0,0 @@
1
- [console_scripts]
2
- schemathesis=schemathesis.cli:schemathesis
3
- st=schemathesis.cli:schemathesis
4
-
5
- [pytest11]
6
- schemathesis=schemathesis.extra.pytest_plugin
7
-
File without changes