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.
- schemathesis/__init__.py +53 -25
- schemathesis/auths.py +507 -0
- schemathesis/checks.py +190 -25
- schemathesis/cli/__init__.py +27 -1219
- schemathesis/cli/__main__.py +4 -0
- schemathesis/cli/commands/__init__.py +133 -0
- schemathesis/cli/commands/data.py +10 -0
- schemathesis/cli/commands/run/__init__.py +602 -0
- schemathesis/cli/commands/run/context.py +228 -0
- schemathesis/cli/commands/run/events.py +60 -0
- schemathesis/cli/commands/run/executor.py +157 -0
- schemathesis/cli/commands/run/filters.py +53 -0
- schemathesis/cli/commands/run/handlers/__init__.py +46 -0
- schemathesis/cli/commands/run/handlers/base.py +45 -0
- schemathesis/cli/commands/run/handlers/cassettes.py +464 -0
- schemathesis/cli/commands/run/handlers/junitxml.py +60 -0
- schemathesis/cli/commands/run/handlers/output.py +1750 -0
- schemathesis/cli/commands/run/loaders.py +118 -0
- schemathesis/cli/commands/run/validation.py +256 -0
- schemathesis/cli/constants.py +5 -0
- schemathesis/cli/core.py +19 -0
- schemathesis/cli/ext/fs.py +16 -0
- schemathesis/cli/ext/groups.py +203 -0
- schemathesis/cli/ext/options.py +81 -0
- schemathesis/config/__init__.py +202 -0
- schemathesis/config/_auth.py +51 -0
- schemathesis/config/_checks.py +268 -0
- schemathesis/config/_diff_base.py +101 -0
- schemathesis/config/_env.py +21 -0
- schemathesis/config/_error.py +163 -0
- schemathesis/config/_generation.py +157 -0
- schemathesis/config/_health_check.py +24 -0
- schemathesis/config/_operations.py +335 -0
- schemathesis/config/_output.py +171 -0
- schemathesis/config/_parameters.py +19 -0
- schemathesis/config/_phases.py +253 -0
- schemathesis/config/_projects.py +543 -0
- schemathesis/config/_rate_limit.py +17 -0
- schemathesis/config/_report.py +120 -0
- schemathesis/config/_validator.py +9 -0
- schemathesis/config/_warnings.py +89 -0
- schemathesis/config/schema.json +975 -0
- schemathesis/core/__init__.py +72 -0
- schemathesis/core/adapter.py +34 -0
- schemathesis/core/compat.py +32 -0
- schemathesis/core/control.py +2 -0
- schemathesis/core/curl.py +100 -0
- schemathesis/core/deserialization.py +210 -0
- schemathesis/core/errors.py +588 -0
- schemathesis/core/failures.py +316 -0
- schemathesis/core/fs.py +19 -0
- schemathesis/core/hooks.py +20 -0
- schemathesis/core/jsonschema/__init__.py +13 -0
- schemathesis/core/jsonschema/bundler.py +183 -0
- schemathesis/core/jsonschema/keywords.py +40 -0
- schemathesis/core/jsonschema/references.py +222 -0
- schemathesis/core/jsonschema/types.py +41 -0
- schemathesis/core/lazy_import.py +15 -0
- schemathesis/core/loaders.py +107 -0
- schemathesis/core/marks.py +66 -0
- schemathesis/core/media_types.py +79 -0
- schemathesis/core/output/__init__.py +46 -0
- schemathesis/core/output/sanitization.py +54 -0
- schemathesis/core/parameters.py +45 -0
- schemathesis/core/rate_limit.py +60 -0
- schemathesis/core/registries.py +34 -0
- schemathesis/core/result.py +27 -0
- schemathesis/core/schema_analysis.py +17 -0
- schemathesis/core/shell.py +203 -0
- schemathesis/core/transforms.py +144 -0
- schemathesis/core/transport.py +223 -0
- schemathesis/core/validation.py +73 -0
- schemathesis/core/version.py +7 -0
- schemathesis/engine/__init__.py +28 -0
- schemathesis/engine/context.py +152 -0
- schemathesis/engine/control.py +44 -0
- schemathesis/engine/core.py +201 -0
- schemathesis/engine/errors.py +446 -0
- schemathesis/engine/events.py +284 -0
- schemathesis/engine/observations.py +42 -0
- schemathesis/engine/phases/__init__.py +108 -0
- schemathesis/engine/phases/analysis.py +28 -0
- schemathesis/engine/phases/probes.py +172 -0
- schemathesis/engine/phases/stateful/__init__.py +68 -0
- schemathesis/engine/phases/stateful/_executor.py +364 -0
- schemathesis/engine/phases/stateful/context.py +85 -0
- schemathesis/engine/phases/unit/__init__.py +220 -0
- schemathesis/engine/phases/unit/_executor.py +459 -0
- schemathesis/engine/phases/unit/_pool.py +82 -0
- schemathesis/engine/recorder.py +254 -0
- schemathesis/errors.py +47 -0
- schemathesis/filters.py +395 -0
- schemathesis/generation/__init__.py +25 -0
- schemathesis/generation/case.py +478 -0
- schemathesis/generation/coverage.py +1528 -0
- schemathesis/generation/hypothesis/__init__.py +121 -0
- schemathesis/generation/hypothesis/builder.py +992 -0
- schemathesis/generation/hypothesis/examples.py +56 -0
- schemathesis/generation/hypothesis/given.py +66 -0
- schemathesis/generation/hypothesis/reporting.py +285 -0
- schemathesis/generation/meta.py +227 -0
- schemathesis/generation/metrics.py +93 -0
- schemathesis/generation/modes.py +20 -0
- schemathesis/generation/overrides.py +127 -0
- schemathesis/generation/stateful/__init__.py +37 -0
- schemathesis/generation/stateful/state_machine.py +294 -0
- schemathesis/graphql/__init__.py +15 -0
- schemathesis/graphql/checks.py +109 -0
- schemathesis/graphql/loaders.py +285 -0
- schemathesis/hooks.py +270 -91
- schemathesis/openapi/__init__.py +13 -0
- schemathesis/openapi/checks.py +467 -0
- schemathesis/openapi/generation/__init__.py +0 -0
- schemathesis/openapi/generation/filters.py +72 -0
- schemathesis/openapi/loaders.py +315 -0
- schemathesis/pytest/__init__.py +5 -0
- schemathesis/pytest/control_flow.py +7 -0
- schemathesis/pytest/lazy.py +341 -0
- schemathesis/pytest/loaders.py +36 -0
- schemathesis/pytest/plugin.py +357 -0
- schemathesis/python/__init__.py +0 -0
- schemathesis/python/asgi.py +12 -0
- schemathesis/python/wsgi.py +12 -0
- schemathesis/schemas.py +682 -257
- schemathesis/specs/graphql/__init__.py +0 -1
- schemathesis/specs/graphql/nodes.py +26 -2
- schemathesis/specs/graphql/scalars.py +77 -12
- schemathesis/specs/graphql/schemas.py +367 -148
- schemathesis/specs/graphql/validation.py +33 -0
- schemathesis/specs/openapi/__init__.py +9 -1
- schemathesis/specs/openapi/_hypothesis.py +555 -318
- schemathesis/specs/openapi/adapter/__init__.py +10 -0
- schemathesis/specs/openapi/adapter/parameters.py +729 -0
- schemathesis/specs/openapi/adapter/protocol.py +59 -0
- schemathesis/specs/openapi/adapter/references.py +19 -0
- schemathesis/specs/openapi/adapter/responses.py +368 -0
- schemathesis/specs/openapi/adapter/security.py +144 -0
- schemathesis/specs/openapi/adapter/v2.py +30 -0
- schemathesis/specs/openapi/adapter/v3_0.py +30 -0
- schemathesis/specs/openapi/adapter/v3_1.py +30 -0
- schemathesis/specs/openapi/analysis.py +96 -0
- schemathesis/specs/openapi/checks.py +748 -82
- schemathesis/specs/openapi/converter.py +176 -37
- schemathesis/specs/openapi/definitions.py +599 -4
- schemathesis/specs/openapi/examples.py +581 -165
- schemathesis/specs/openapi/expressions/__init__.py +52 -5
- schemathesis/specs/openapi/expressions/extractors.py +25 -0
- schemathesis/specs/openapi/expressions/lexer.py +34 -31
- schemathesis/specs/openapi/expressions/nodes.py +97 -46
- schemathesis/specs/openapi/expressions/parser.py +35 -13
- schemathesis/specs/openapi/formats.py +122 -0
- schemathesis/specs/openapi/media_types.py +75 -0
- schemathesis/specs/openapi/negative/__init__.py +93 -73
- schemathesis/specs/openapi/negative/mutations.py +294 -103
- schemathesis/specs/openapi/negative/utils.py +0 -9
- schemathesis/specs/openapi/patterns.py +458 -0
- schemathesis/specs/openapi/references.py +60 -81
- schemathesis/specs/openapi/schemas.py +647 -666
- schemathesis/specs/openapi/serialization.py +53 -30
- schemathesis/specs/openapi/stateful/__init__.py +403 -68
- schemathesis/specs/openapi/stateful/control.py +87 -0
- schemathesis/specs/openapi/stateful/dependencies/__init__.py +232 -0
- schemathesis/specs/openapi/stateful/dependencies/inputs.py +428 -0
- schemathesis/specs/openapi/stateful/dependencies/models.py +341 -0
- schemathesis/specs/openapi/stateful/dependencies/naming.py +491 -0
- schemathesis/specs/openapi/stateful/dependencies/outputs.py +34 -0
- schemathesis/specs/openapi/stateful/dependencies/resources.py +339 -0
- schemathesis/specs/openapi/stateful/dependencies/schemas.py +447 -0
- schemathesis/specs/openapi/stateful/inference.py +254 -0
- schemathesis/specs/openapi/stateful/links.py +219 -78
- schemathesis/specs/openapi/types/__init__.py +3 -0
- schemathesis/specs/openapi/types/common.py +23 -0
- schemathesis/specs/openapi/types/v2.py +129 -0
- schemathesis/specs/openapi/types/v3.py +134 -0
- schemathesis/specs/openapi/utils.py +7 -6
- schemathesis/specs/openapi/warnings.py +75 -0
- schemathesis/transport/__init__.py +224 -0
- schemathesis/transport/asgi.py +26 -0
- schemathesis/transport/prepare.py +126 -0
- schemathesis/transport/requests.py +278 -0
- schemathesis/transport/serialization.py +329 -0
- schemathesis/transport/wsgi.py +175 -0
- schemathesis-4.4.2.dist-info/METADATA +213 -0
- schemathesis-4.4.2.dist-info/RECORD +192 -0
- {schemathesis-3.15.4.dist-info → schemathesis-4.4.2.dist-info}/WHEEL +1 -1
- schemathesis-4.4.2.dist-info/entry_points.txt +6 -0
- {schemathesis-3.15.4.dist-info → schemathesis-4.4.2.dist-info/licenses}/LICENSE +1 -1
- schemathesis/_compat.py +0 -57
- schemathesis/_hypothesis.py +0 -123
- schemathesis/auth.py +0 -214
- schemathesis/cli/callbacks.py +0 -240
- schemathesis/cli/cassettes.py +0 -351
- schemathesis/cli/context.py +0 -38
- schemathesis/cli/debug.py +0 -21
- schemathesis/cli/handlers.py +0 -11
- schemathesis/cli/junitxml.py +0 -41
- schemathesis/cli/options.py +0 -70
- schemathesis/cli/output/__init__.py +0 -1
- schemathesis/cli/output/default.py +0 -521
- schemathesis/cli/output/short.py +0 -40
- schemathesis/constants.py +0 -88
- schemathesis/exceptions.py +0 -257
- schemathesis/extra/_aiohttp.py +0 -27
- schemathesis/extra/_flask.py +0 -10
- schemathesis/extra/_server.py +0 -16
- schemathesis/extra/pytest_plugin.py +0 -251
- schemathesis/failures.py +0 -145
- schemathesis/fixups/__init__.py +0 -29
- schemathesis/fixups/fast_api.py +0 -30
- schemathesis/graphql.py +0 -5
- schemathesis/internal.py +0 -6
- schemathesis/lazy.py +0 -301
- schemathesis/models.py +0 -1113
- schemathesis/parameters.py +0 -91
- schemathesis/runner/__init__.py +0 -470
- schemathesis/runner/events.py +0 -242
- schemathesis/runner/impl/__init__.py +0 -3
- schemathesis/runner/impl/core.py +0 -791
- schemathesis/runner/impl/solo.py +0 -85
- schemathesis/runner/impl/threadpool.py +0 -367
- schemathesis/runner/serialization.py +0 -206
- schemathesis/serializers.py +0 -253
- schemathesis/service/__init__.py +0 -18
- schemathesis/service/auth.py +0 -10
- schemathesis/service/client.py +0 -62
- schemathesis/service/constants.py +0 -25
- schemathesis/service/events.py +0 -39
- schemathesis/service/handler.py +0 -46
- schemathesis/service/hosts.py +0 -74
- schemathesis/service/metadata.py +0 -42
- schemathesis/service/models.py +0 -21
- schemathesis/service/serialization.py +0 -184
- schemathesis/service/worker.py +0 -39
- schemathesis/specs/graphql/loaders.py +0 -215
- schemathesis/specs/openapi/constants.py +0 -7
- schemathesis/specs/openapi/expressions/context.py +0 -12
- schemathesis/specs/openapi/expressions/pointers.py +0 -29
- schemathesis/specs/openapi/filters.py +0 -44
- schemathesis/specs/openapi/links.py +0 -303
- schemathesis/specs/openapi/loaders.py +0 -453
- schemathesis/specs/openapi/parameters.py +0 -430
- schemathesis/specs/openapi/security.py +0 -129
- schemathesis/specs/openapi/validation.py +0 -24
- schemathesis/stateful.py +0 -358
- schemathesis/targets.py +0 -32
- schemathesis/types.py +0 -38
- schemathesis/utils.py +0 -475
- schemathesis-3.15.4.dist-info/METADATA +0 -202
- schemathesis-3.15.4.dist-info/RECORD +0 -99
- schemathesis-3.15.4.dist-info/entry_points.txt +0 -7
- /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,,
|
|
File without changes
|