schemathesis 4.0.0a3__tar.gz → 4.0.0a5__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (861) hide show
  1. schemathesis-4.0.0a5/.github/workflows/build.yml +123 -0
  2. schemathesis-4.0.0a5/.github/workflows/codeql-analysis.yml +66 -0
  3. schemathesis-4.0.0a5/.pre-commit-config.yaml +54 -0
  4. schemathesis-4.0.0a5/PKG-INFO +278 -0
  5. schemathesis-4.0.0a5/README.md +182 -0
  6. schemathesis-4.0.0a5/docs/changelog.rst +4718 -0
  7. schemathesis-4.0.0a5/docs/contrib.rst +51 -0
  8. schemathesis-4.0.0a5/docs/experimental.rst +154 -0
  9. schemathesis-4.0.0a5/pyproject.toml +172 -0
  10. schemathesis-4.0.0a5/src/schemathesis/cli/__init__.py +28 -0
  11. schemathesis-4.0.0a5/src/schemathesis/cli/commands/run/__init__.py +686 -0
  12. schemathesis-4.0.0a5/src/schemathesis/cli/commands/run/checks.py +79 -0
  13. schemathesis-4.0.0a5/src/schemathesis/cli/commands/run/context.py +200 -0
  14. schemathesis-4.0.0a5/src/schemathesis/cli/commands/run/executor.py +165 -0
  15. schemathesis-4.0.0a5/src/schemathesis/cli/commands/run/filters.py +203 -0
  16. schemathesis-4.0.0a5/src/schemathesis/cli/commands/run/handlers/cassettes.py +473 -0
  17. schemathesis-4.0.0a5/src/schemathesis/cli/commands/run/handlers/junitxml.py +54 -0
  18. schemathesis-4.0.0a5/src/schemathesis/cli/commands/run/handlers/output.py +1541 -0
  19. schemathesis-4.0.0a5/src/schemathesis/cli/commands/run/hypothesis.py +78 -0
  20. schemathesis-4.0.0a5/src/schemathesis/cli/commands/run/reports.py +72 -0
  21. schemathesis-4.0.0a5/src/schemathesis/cli/commands/run/validation.py +348 -0
  22. schemathesis-4.0.0a5/src/schemathesis/cli/ext/groups.py +84 -0
  23. schemathesis-4.0.0a5/src/schemathesis/cli/ext/options.py +106 -0
  24. schemathesis-4.0.0a5/src/schemathesis/core/__init__.py +64 -0
  25. schemathesis-4.0.0a5/src/schemathesis/core/errors.py +446 -0
  26. schemathesis-4.0.0a5/src/schemathesis/core/failures.py +316 -0
  27. schemathesis-4.0.0a5/src/schemathesis/core/transforms.py +113 -0
  28. schemathesis-4.0.0a5/src/schemathesis/engine/config.py +59 -0
  29. schemathesis-4.0.0a5/src/schemathesis/engine/core.py +167 -0
  30. schemathesis-4.0.0a5/src/schemathesis/engine/errors.py +405 -0
  31. schemathesis-4.0.0a5/src/schemathesis/engine/events.py +250 -0
  32. schemathesis-4.0.0a5/src/schemathesis/engine/phases/__init__.py +78 -0
  33. schemathesis-4.0.0a5/src/schemathesis/engine/phases/stateful/_executor.py +298 -0
  34. schemathesis-4.0.0a5/src/schemathesis/engine/phases/unit/__init__.py +199 -0
  35. schemathesis-4.0.0a5/src/schemathesis/engine/phases/unit/_executor.py +327 -0
  36. schemathesis-4.0.0a5/src/schemathesis/engine/phases/unit/_pool.py +82 -0
  37. schemathesis-4.0.0a5/src/schemathesis/errors.py +41 -0
  38. schemathesis-4.0.0a5/src/schemathesis/experimental/__init__.py +72 -0
  39. schemathesis-4.0.0a5/src/schemathesis/filters.py +392 -0
  40. schemathesis-4.0.0a5/src/schemathesis/generation/coverage.py +936 -0
  41. schemathesis-4.0.0a5/src/schemathesis/generation/hypothesis/builder.py +713 -0
  42. schemathesis-4.0.0a5/src/schemathesis/generation/stateful/state_machine.py +347 -0
  43. schemathesis-4.0.0a5/src/schemathesis/openapi/checks.py +389 -0
  44. schemathesis-4.0.0a5/src/schemathesis/pytest/lazy.py +311 -0
  45. schemathesis-4.0.0a5/src/schemathesis/pytest/plugin.py +299 -0
  46. schemathesis-4.0.0a5/src/schemathesis/schemas.py +790 -0
  47. schemathesis-4.0.0a5/src/schemathesis/specs/openapi/checks.py +667 -0
  48. schemathesis-4.0.0a5/src/schemathesis/specs/openapi/examples.py +443 -0
  49. schemathesis-4.0.0a5/src/schemathesis/specs/openapi/expressions/__init__.py +67 -0
  50. schemathesis-4.0.0a5/src/schemathesis/specs/openapi/expressions/nodes.py +145 -0
  51. schemathesis-4.0.0a5/src/schemathesis/specs/openapi/expressions/parser.py +115 -0
  52. schemathesis-4.0.0a5/src/schemathesis/specs/openapi/parameters.py +400 -0
  53. schemathesis-4.0.0a5/src/schemathesis/specs/openapi/patterns.py +322 -0
  54. schemathesis-4.0.0a5/src/schemathesis/specs/openapi/schemas.py +1227 -0
  55. schemathesis-4.0.0a5/src/schemathesis/specs/openapi/serialization.py +378 -0
  56. schemathesis-4.0.0a5/src/schemathesis/specs/openapi/stateful/__init__.py +365 -0
  57. schemathesis-4.0.0a5/src/schemathesis/specs/openapi/stateful/links.py +271 -0
  58. schemathesis-4.0.0a5/test/__snapshots__/test_dereferencing/test_global_security_schemes_with_custom_scope.raw +60 -0
  59. schemathesis-4.0.0a5/test/__snapshots__/test_dereferencing/test_missing_file_in_resolution.raw +66 -0
  60. schemathesis-4.0.0a5/test/__snapshots__/test_hypothesis/test_health_check_failed_large_base_example.raw +62 -0
  61. schemathesis-4.0.0a5/test/__snapshots__/test_recoverable_errors/test_in_cli[1].raw +88 -0
  62. schemathesis-4.0.0a5/test/__snapshots__/test_recoverable_errors/test_in_cli[2].raw +88 -0
  63. schemathesis-4.0.0a5/test/__snapshots__/test_serialization/test_in_cli[Open API 3.0].raw +63 -0
  64. schemathesis-4.0.0a5/test/apps/openapi/_aiohttp/handlers.py +303 -0
  65. schemathesis-4.0.0a5/test/apps/openapi/schema.py +903 -0
  66. schemathesis-4.0.0a5/test/auth/__snapshots__/test_cli/test_conditional[Open API 3.0].raw +49 -0
  67. schemathesis-4.0.0a5/test/auth/__snapshots__/test_cli/test_custom_auth[Open API 3.0].raw +49 -0
  68. schemathesis-4.0.0a5/test/auth/__snapshots__/test_cli/test_explicit_auth_precedence[Open API 3.0-args0-Basic dXNlcjpwYXNz].raw +49 -0
  69. schemathesis-4.0.0a5/test/auth/__snapshots__/test_cli/test_explicit_auth_precedence[Open API 3.0-args1-Bearer EXPLICIT].raw +49 -0
  70. schemathesis-4.0.0a5/test/auth/__snapshots__/test_cli/test_multiple_auth_mechanisms_with_explicit_auth.raw +60 -0
  71. schemathesis-4.0.0a5/test/auth/__snapshots__/test_cli/test_multiple_threads[Open API 3.0].raw +60 -0
  72. schemathesis-4.0.0a5/test/auth/__snapshots__/test_cli/test_requests_auth[Open API 3.0].raw +49 -0
  73. schemathesis-4.0.0a5/test/auth/test_cli.py +217 -0
  74. schemathesis-4.0.0a5/test/cli/__snapshots__/test_cassettes/test_forbid_preserve_bytes_without_cassette_path[Open API 3.0].raw +7 -0
  75. schemathesis-4.0.0a5/test/cli/__snapshots__/test_cassettes/test_run_subprocess[Open API 2.0].raw +52 -0
  76. schemathesis-4.0.0a5/test/cli/__snapshots__/test_cassettes/test_run_subprocess[Open API 3.0].raw +52 -0
  77. schemathesis-4.0.0a5/test/cli/__snapshots__/test_checks/test_negative_data_rejection_displays_all_cases.raw +99 -0
  78. schemathesis-4.0.0a5/test/cli/__snapshots__/test_checks/test_positive_data_acceptance[args0].raw +67 -0
  79. schemathesis-4.0.0a5/test/cli/__snapshots__/test_checks/test_positive_data_acceptance[args10].raw +75 -0
  80. schemathesis-4.0.0a5/test/cli/__snapshots__/test_checks/test_positive_data_acceptance[args1].raw +67 -0
  81. schemathesis-4.0.0a5/test/cli/__snapshots__/test_checks/test_positive_data_acceptance[args2].raw +75 -0
  82. schemathesis-4.0.0a5/test/cli/__snapshots__/test_checks/test_positive_data_acceptance[args3].raw +67 -0
  83. schemathesis-4.0.0a5/test/cli/__snapshots__/test_checks/test_positive_data_acceptance[args4].raw +75 -0
  84. schemathesis-4.0.0a5/test/cli/__snapshots__/test_checks/test_positive_data_acceptance[args5].raw +67 -0
  85. schemathesis-4.0.0a5/test/cli/__snapshots__/test_checks/test_positive_data_acceptance[args6].raw +75 -0
  86. schemathesis-4.0.0a5/test/cli/__snapshots__/test_checks/test_positive_data_acceptance[args7].raw +67 -0
  87. schemathesis-4.0.0a5/test/cli/__snapshots__/test_checks/test_positive_data_acceptance_with_env_vars.raw +75 -0
  88. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_auth_override_on_protected_operation[Open API 2.0---auth='testwrong'].raw +81 -0
  89. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_auth_override_on_protected_operation[Open API 2.0--H Authorization Basic J3Rlc3Q6d3Jvbmcn].raw +81 -0
  90. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_auth_override_on_protected_operation[Open API 3.0---auth='testwrong'].raw +81 -0
  91. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_auth_override_on_protected_operation[Open API 3.0--H Authorization Basic J3Rlc3Q6d3Jvbmcn].raw +81 -0
  92. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_binary_payload.raw +66 -0
  93. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_chunked_encoding_error[Open API 3.0].raw +55 -0
  94. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_cli_run_changed_base_url[Open API 3.0].raw +66 -0
  95. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_cli_run_only_failure[Open API 2.0-1].raw +66 -0
  96. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_cli_run_only_failure[Open API 2.0-2].raw +66 -0
  97. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_cli_run_only_failure[Open API 3.0-1].raw +66 -0
  98. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_cli_run_only_failure[Open API 3.0-2].raw +66 -0
  99. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_complex_urlencoded_example.raw +52 -0
  100. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_connection_error[Open API 2.0-1].raw +67 -0
  101. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_connection_error[Open API 2.0-2].raw +67 -0
  102. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_connection_error[Open API 3.0-1].raw +67 -0
  103. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_connection_error[Open API 3.0-2].raw +67 -0
  104. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_connection_timeout[Open API 2.0-1].raw +53 -0
  105. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_connection_timeout[Open API 2.0-2].raw +53 -0
  106. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_connection_timeout[Open API 3.0-1].raw +53 -0
  107. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_connection_timeout[Open API 3.0-2].raw +53 -0
  108. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_custom_cli_option[Open API 3.0].raw +53 -0
  109. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_dont_skip_when_generation_is_possible[Open API 3.0].raw +49 -0
  110. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_empty_schema_file.raw +14 -0
  111. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_exit_first[Open API 3.0].raw +57 -0
  112. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_explicit_example_failure_output.raw +66 -0
  113. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_explicit_headers_in_output_on_errors[Open API 3.0].raw +77 -0
  114. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_explicit_query_token_sanitization[Open API 3.0].raw +66 -0
  115. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_filter_by[Open API 3.0---exclude-by=x-property != 42].raw +49 -0
  116. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_filter_by[Open API 3.0---include-by=x-property == 42].raw +49 -0
  117. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_filter_case_sensitivity[Open API 3.0].raw +66 -0
  118. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_graphql_url[foo-args0].raw +41 -0
  119. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_graphql_url[foo-args1].raw +41 -0
  120. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_graphql_url[graphql-args0].raw +41 -0
  121. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_graphql_url[graphql-args1].raw +41 -0
  122. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_group_errors.raw +61 -0
  123. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_invalid_operation[Open API 2.0-1].raw +69 -0
  124. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_invalid_operation[Open API 3.0-1].raw +71 -0
  125. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_invalid_schema_with_disabled_validation[3.0.2].raw +75 -0
  126. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_invalid_schema_with_disabled_validation[3.1.0].raw +75 -0
  127. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_invalid_yaml.raw +15 -0
  128. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_keyboard_interrupt[Open API 2.0-1].raw +47 -0
  129. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_keyboard_interrupt[Open API 3.0-1].raw +47 -0
  130. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_keyboard_interrupt_during_schema_loading.raw +8 -0
  131. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_keyboard_interrupt_threaded[Open API 2.0].raw +42 -0
  132. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_keyboard_interrupt_threaded[Open API 3.0].raw +42 -0
  133. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_long_operation_output.raw +61 -0
  134. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_long_payload.raw +66 -0
  135. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_malformed_json_deduplication[Open API 3.0].raw +70 -0
  136. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_max_response_time_invalid[Open API 2.0-1].raw +69 -0
  137. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_max_response_time_invalid[Open API 2.0-2].raw +69 -0
  138. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_max_response_time_invalid[Open API 3.0-1].raw +69 -0
  139. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_max_response_time_invalid[Open API 3.0-2].raw +69 -0
  140. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_missing_content_and_schema[cookie].raw +61 -0
  141. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_missing_content_and_schema[header].raw +61 -0
  142. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_missing_content_and_schema[path].raw +61 -0
  143. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_missing_content_and_schema[query].raw +61 -0
  144. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_multiple_errors.raw +68 -0
  145. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_multiple_failures_different_check[Open API 2.0].raw +72 -0
  146. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_multiple_failures_different_check[Open API 3.0].raw +72 -0
  147. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_multiple_failures_in_single_check.raw +84 -0
  148. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_multiple_failures_single_check[Open API 2.0].raw +66 -0
  149. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_multiple_failures_single_check[Open API 3.0].raw +66 -0
  150. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_nested_binary_in_yaml.raw +60 -0
  151. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_no_schema_in_media_type[Open API 3.0].raw +60 -0
  152. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_no_useless_traceback.raw +64 -0
  153. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_null_byte_in_header_probe.raw +49 -0
  154. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_proxy_error[Open API 3.0].raw +61 -0
  155. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_read_content_timeout[Open API 3.0].raw +61 -0
  156. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_recursive_reference_error_message.raw +61 -0
  157. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_register_check[AssertionError(Custom check failed!)-Open API 2.0].raw +68 -0
  158. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_register_check[AssertionError(Custom check failed!)-Open API 3.0].raw +68 -0
  159. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_register_check[AssertionError-Open API 2.0].raw +66 -0
  160. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_register_check[AssertionError-Open API 3.0].raw +66 -0
  161. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_remote_disconnected_error[Open API 3.0].raw +16 -0
  162. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_reserved_characters_in_operation_name.raw +49 -0
  163. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_response_payload_encoding[Open API 2.0].raw +69 -0
  164. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_response_payload_encoding[Open API 3.0].raw +69 -0
  165. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_response_schema_conformance_deduplication[Open API 2.0].raw +80 -0
  166. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_response_schema_conformance_deduplication[Open API 3.0].raw +80 -0
  167. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_run_output[args19].raw +160 -0
  168. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_run_output[args1].raw +7 -0
  169. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_run_output[args30].raw +7 -0
  170. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_schema_not_available[1].raw +16 -0
  171. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_schema_not_available[2].raw +16 -0
  172. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_skip_not_negated_tests[Open API 3.0].raw +49 -0
  173. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_skipped_on_no_explicit_examples.raw +43 -0
  174. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_status_code_conformance[Open API 2.0-1].raw +69 -0
  175. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_status_code_conformance[Open API 2.0-2].raw +69 -0
  176. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_status_code_conformance[Open API 3.0-1].raw +69 -0
  177. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_status_code_conformance[Open API 3.0-2].raw +69 -0
  178. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_unknown_schema_error[Open API 3.0].raw +72 -0
  179. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_unresolvable_reference_with_disabled_validation.raw +77 -0
  180. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_unsatisfiable[Open API 2.0-1].raw +67 -0
  181. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_unsatisfiable[Open API 2.0-2].raw +67 -0
  182. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_unsatisfiable[Open API 3.0-1].raw +67 -0
  183. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_unsatisfiable[Open API 3.0-2].raw +67 -0
  184. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_unsupported_regex.raw +75 -0
  185. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_useful_traceback[Open API 3.0].raw +74 -0
  186. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_wait_for_schema_not_enough.raw +14 -0
  187. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_warning_on_all_not_found.raw +61 -0
  188. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_warning_on_no_2xx.raw +60 -0
  189. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_warning_on_no_2xx_options_only.raw +52 -0
  190. schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_warning_on_unauthorized.raw +61 -0
  191. schemathesis-4.0.0a5/test/cli/__snapshots__/test_hooks/test_after_call[Open API 3.0].raw +88 -0
  192. schemathesis-4.0.0a5/test/cli/test_cassettes.py +338 -0
  193. schemathesis-4.0.0a5/test/cli/test_checks.py +183 -0
  194. schemathesis-4.0.0a5/test/cli/test_commands.py +1642 -0
  195. schemathesis-4.0.0a5/test/cli/test_crashes.py +225 -0
  196. schemathesis-4.0.0a5/test/cli/test_junitxml.py +212 -0
  197. schemathesis-4.0.0a5/test/cli/test_options.py +22 -0
  198. schemathesis-4.0.0a5/test/cli/test_targeted.py +74 -0
  199. schemathesis-4.0.0a5/test/code_samples/test_curl.py +117 -0
  200. schemathesis-4.0.0a5/test/conftest.py +1115 -0
  201. schemathesis-4.0.0a5/test/contrib/__snapshots__/test_unique_data/test_cli[None].raw +56 -0
  202. schemathesis-4.0.0a5/test/contrib/__snapshots__/test_unique_data/test_cli[raw_schema0].raw +56 -0
  203. schemathesis-4.0.0a5/test/contrib/__snapshots__/test_unique_data/test_cli[raw_schema1].raw +56 -0
  204. schemathesis-4.0.0a5/test/contrib/__snapshots__/test_unique_data/test_cli[raw_schema2].raw +56 -0
  205. schemathesis-4.0.0a5/test/contrib/__snapshots__/test_unique_data/test_cli_failure.raw +58 -0
  206. schemathesis-4.0.0a5/test/contrib/__snapshots__/test_unique_data/test_explicit_headers[1].raw +45 -0
  207. schemathesis-4.0.0a5/test/contrib/__snapshots__/test_unique_data/test_explicit_headers[2].raw +45 -0
  208. schemathesis-4.0.0a5/test/contrib/__snapshots__/test_unique_data/test_graphql_url.raw +41 -0
  209. schemathesis-4.0.0a5/test/contrib/openapi/__snapshots__/test_fill_missing_examples/test_fills_missing_examples.raw +41 -0
  210. schemathesis-4.0.0a5/test/contrib/openapi/test_fill_missing_examples.py +6 -0
  211. schemathesis-4.0.0a5/test/contrib/test_unique_data.py +190 -0
  212. schemathesis-4.0.0a5/test/coverage/__snapshots__/test_phase/test_negative_data_rejection.raw +60 -0
  213. schemathesis-4.0.0a5/test/coverage/__snapshots__/test_phase/test_unspecified_http_methods.raw +84 -0
  214. schemathesis-4.0.0a5/test/coverage/test_phase.py +1513 -0
  215. schemathesis-4.0.0a5/test/engine/test_checks.py +911 -0
  216. schemathesis-4.0.0a5/test/engine/test_engine.py +1250 -0
  217. schemathesis-4.0.0a5/test/experimental/test_experiments.py +64 -0
  218. schemathesis-4.0.0a5/test/hooks/test_filters.py +104 -0
  219. schemathesis-4.0.0a5/test/hooks/test_hooks.py +510 -0
  220. schemathesis-4.0.0a5/test/specs/graphql/__snapshots__/test_basic/test_disallow_null.raw +60 -0
  221. schemathesis-4.0.0a5/test/specs/graphql/__snapshots__/test_basic/test_filter_operations[--exclude-name=Query.getBooks].raw +41 -0
  222. schemathesis-4.0.0a5/test/specs/graphql/__snapshots__/test_basic/test_filter_operations[--include-name=Query.getBooks].raw +41 -0
  223. schemathesis-4.0.0a5/test/specs/graphql/__snapshots__/test_basic/test_schema_error[ntype Query {n 123(created Int!) Int!n}-.whatever].raw +19 -0
  224. schemathesis-4.0.0a5/test/specs/graphql/__snapshots__/test_basic/test_schema_error[ntype Query {n func(created Unknown!) Int!n}-.gql].raw +14 -0
  225. schemathesis-4.0.0a5/test/specs/graphql/__snapshots__/test_custom_scalars/test_custom_scalar_in_cli.raw +56 -0
  226. schemathesis-4.0.0a5/test/specs/graphql/test_basic.py +321 -0
  227. schemathesis-4.0.0a5/test/specs/graphql/test_custom_scalars.py +90 -0
  228. schemathesis-4.0.0a5/test/specs/openapi/__snapshots__/test_checks/test_method_not_allowed[basic-post].raw +61 -0
  229. schemathesis-4.0.0a5/test/specs/openapi/__snapshots__/test_checks/test_method_not_allowed[success-get].raw +41 -0
  230. schemathesis-4.0.0a5/test/specs/openapi/__snapshots__/test_checks/test_missing_required_header[basic-Authorization-406].raw +41 -0
  231. schemathesis-4.0.0a5/test/specs/openapi/__snapshots__/test_checks/test_missing_required_header[success-Authorization-200].raw +61 -0
  232. schemathesis-4.0.0a5/test/specs/openapi/__snapshots__/test_checks/test_missing_required_header[success-X-API-Key-1-200].raw +41 -0
  233. schemathesis-4.0.0a5/test/specs/openapi/__snapshots__/test_checks/test_missing_required_header[success-X-API-Key-1-406].raw +61 -0
  234. schemathesis-4.0.0a5/test/specs/openapi/__snapshots__/test_examples/test_network_error_with_flaky_generation.raw +53 -0
  235. schemathesis-4.0.0a5/test/specs/openapi/__snapshots__/test_examples/test_parameter_override.raw +52 -0
  236. schemathesis-4.0.0a5/test/specs/openapi/__snapshots__/test_ignored_auth/test_explicit_auth_cli[Open API 3.0].raw +49 -0
  237. schemathesis-4.0.0a5/test/specs/openapi/__snapshots__/test_ignored_auth/test_stateful_in_cli_no_error[Open API 3.0-False].raw +45 -0
  238. schemathesis-4.0.0a5/test/specs/openapi/__snapshots__/test_ignored_auth/test_stateful_in_cli_no_error[Open API 3.0-True].raw +64 -0
  239. schemathesis-4.0.0a5/test/specs/openapi/__snapshots__/test_media_types/test_explicit_example_with_custom_media_type.raw +62 -0
  240. schemathesis-4.0.0a5/test/specs/openapi/stateful/__snapshots__/test_cli/test_default[Open API 3.0-1].raw +87 -0
  241. schemathesis-4.0.0a5/test/specs/openapi/stateful/__snapshots__/test_cli/test_default[Open API 3.0-2].raw +87 -0
  242. schemathesis-4.0.0a5/test/specs/openapi/stateful/__snapshots__/test_cli/test_filtered_out[Open API 3.0].raw +69 -0
  243. schemathesis-4.0.0a5/test/specs/openapi/stateful/__snapshots__/test_cli/test_generation_config[Open API 3.0].raw +63 -0
  244. schemathesis-4.0.0a5/test/specs/openapi/stateful/__snapshots__/test_cli/test_invalid_parameter_reference.raw +72 -0
  245. schemathesis-4.0.0a5/test/specs/openapi/stateful/__snapshots__/test_cli/test_keyboard_interrupt[Open API 3.0].raw +45 -0
  246. schemathesis-4.0.0a5/test/specs/openapi/stateful/__snapshots__/test_cli/test_max_failures[Open API 3.0].raw +92 -0
  247. schemathesis-4.0.0a5/test/specs/openapi/stateful/__snapshots__/test_cli/test_missing_body_parameter.raw +60 -0
  248. schemathesis-4.0.0a5/test/specs/openapi/stateful/__snapshots__/test_cli/test_missing_link[Open API 3.0].raw +64 -0
  249. schemathesis-4.0.0a5/test/specs/openapi/stateful/__snapshots__/test_cli/test_non_json_response[User data as plain text].raw +60 -0
  250. schemathesis-4.0.0a5/test/specs/openapi/stateful/__snapshots__/test_cli/test_non_json_response[].raw +60 -0
  251. schemathesis-4.0.0a5/test/specs/openapi/stateful/__snapshots__/test_cli/test_not_enough_links[Open API 3.0].raw +58 -0
  252. schemathesis-4.0.0a5/test/specs/openapi/stateful/__snapshots__/test_cli/test_proxy_error[Open API 3.0].raw +56 -0
  253. schemathesis-4.0.0a5/test/specs/openapi/stateful/__snapshots__/test_cli/test_stateful_only[Open API 3.0].raw +63 -0
  254. schemathesis-4.0.0a5/test/specs/openapi/stateful/__snapshots__/test_cli/test_stateful_only_with_error[Open API 3.0].raw +56 -0
  255. schemathesis-4.0.0a5/test/specs/openapi/stateful/conftest.py +530 -0
  256. schemathesis-4.0.0a5/test/specs/openapi/stateful/test_cli.py +227 -0
  257. schemathesis-4.0.0a5/test/specs/openapi/stateful/test_engine.py +687 -0
  258. schemathesis-4.0.0a5/test/specs/openapi/stateful/test_stateful.py +290 -0
  259. schemathesis-4.0.0a5/test/specs/openapi/test_checks.py +368 -0
  260. schemathesis-4.0.0a5/test/specs/openapi/test_examples.py +1648 -0
  261. schemathesis-4.0.0a5/test/specs/openapi/test_expressions.py +239 -0
  262. schemathesis-4.0.0a5/test/specs/openapi/test_ignored_auth.py +479 -0
  263. schemathesis-4.0.0a5/test/specs/openapi/test_media_types.py +80 -0
  264. schemathesis-4.0.0a5/test/specs/openapi/test_patterns.py +170 -0
  265. schemathesis-4.0.0a5/test/specs/openapi/test_serializing.py +586 -0
  266. schemathesis-4.0.0a5/test/test_async.py +111 -0
  267. schemathesis-4.0.0a5/test/test_common_parameters.py +167 -0
  268. schemathesis-4.0.0a5/test/test_dereferencing.py +854 -0
  269. schemathesis-4.0.0a5/test/test_filters.py +151 -0
  270. schemathesis-4.0.0a5/test/test_hypothesis.py +509 -0
  271. schemathesis-4.0.0a5/test/test_lazy.py +565 -0
  272. schemathesis-4.0.0a5/test/test_parameters.py +597 -0
  273. schemathesis-4.0.0a5/test/test_parametrization.py +768 -0
  274. schemathesis-4.0.0a5/test/test_petstore.py +289 -0
  275. schemathesis-4.0.0a5/test/test_pytest.py +876 -0
  276. schemathesis-4.0.0a5/test/test_recoverable_errors.py +115 -0
  277. schemathesis-4.0.0a5/test/test_required.py +107 -0
  278. schemathesis-4.0.0a5/test/test_serialization.py +534 -0
  279. schemathesis-4.0.0a5/test/test_stateful.py +228 -0
  280. schemathesis-4.0.0a5/test/utils.py +219 -0
  281. schemathesis-4.0.0a5/test-corpus/test_corpus.py +256 -0
  282. schemathesis-4.0.0a3/.github/workflows/build.yml +0 -123
  283. schemathesis-4.0.0a3/.github/workflows/codeql-analysis.yml +0 -66
  284. schemathesis-4.0.0a3/.pre-commit-config.yaml +0 -54
  285. schemathesis-4.0.0a3/PKG-INFO +0 -297
  286. schemathesis-4.0.0a3/README.md +0 -201
  287. schemathesis-4.0.0a3/docs/changelog.rst +0 -4601
  288. schemathesis-4.0.0a3/docs/contrib.rst +0 -51
  289. schemathesis-4.0.0a3/docs/experimental.rst +0 -214
  290. schemathesis-4.0.0a3/pyproject.toml +0 -172
  291. schemathesis-4.0.0a3/src/schemathesis/cli/__init__.py +0 -28
  292. schemathesis-4.0.0a3/src/schemathesis/cli/commands/run/__init__.py +0 -662
  293. schemathesis-4.0.0a3/src/schemathesis/cli/commands/run/checks.py +0 -80
  294. schemathesis-4.0.0a3/src/schemathesis/cli/commands/run/context.py +0 -117
  295. schemathesis-4.0.0a3/src/schemathesis/cli/commands/run/executor.py +0 -144
  296. schemathesis-4.0.0a3/src/schemathesis/cli/commands/run/filters.py +0 -202
  297. schemathesis-4.0.0a3/src/schemathesis/cli/commands/run/handlers/cassettes.py +0 -492
  298. schemathesis-4.0.0a3/src/schemathesis/cli/commands/run/handlers/junitxml.py +0 -54
  299. schemathesis-4.0.0a3/src/schemathesis/cli/commands/run/handlers/output.py +0 -1405
  300. schemathesis-4.0.0a3/src/schemathesis/cli/commands/run/hypothesis.py +0 -105
  301. schemathesis-4.0.0a3/src/schemathesis/cli/commands/run/validation.py +0 -342
  302. schemathesis-4.0.0a3/src/schemathesis/cli/ext/groups.py +0 -55
  303. schemathesis-4.0.0a3/src/schemathesis/cli/ext/options.py +0 -99
  304. schemathesis-4.0.0a3/src/schemathesis/core/__init__.py +0 -58
  305. schemathesis-4.0.0a3/src/schemathesis/core/errors.py +0 -378
  306. schemathesis-4.0.0a3/src/schemathesis/core/failures.py +0 -315
  307. schemathesis-4.0.0a3/src/schemathesis/core/transforms.py +0 -113
  308. schemathesis-4.0.0a3/src/schemathesis/engine/config.py +0 -59
  309. schemathesis-4.0.0a3/src/schemathesis/engine/core.py +0 -157
  310. schemathesis-4.0.0a3/src/schemathesis/engine/errors.py +0 -400
  311. schemathesis-4.0.0a3/src/schemathesis/engine/events.py +0 -243
  312. schemathesis-4.0.0a3/src/schemathesis/engine/phases/__init__.py +0 -66
  313. schemathesis-4.0.0a3/src/schemathesis/engine/phases/stateful/_executor.py +0 -298
  314. schemathesis-4.0.0a3/src/schemathesis/engine/phases/unit/__init__.py +0 -175
  315. schemathesis-4.0.0a3/src/schemathesis/engine/phases/unit/_executor.py +0 -322
  316. schemathesis-4.0.0a3/src/schemathesis/engine/phases/unit/_pool.py +0 -74
  317. schemathesis-4.0.0a3/src/schemathesis/errors.py +0 -37
  318. schemathesis-4.0.0a3/src/schemathesis/experimental/__init__.py +0 -78
  319. schemathesis-4.0.0a3/src/schemathesis/filters.py +0 -384
  320. schemathesis-4.0.0a3/src/schemathesis/generation/coverage.py +0 -931
  321. schemathesis-4.0.0a3/src/schemathesis/generation/hypothesis/builder.py +0 -588
  322. schemathesis-4.0.0a3/src/schemathesis/generation/stateful/state_machine.py +0 -301
  323. schemathesis-4.0.0a3/src/schemathesis/openapi/checks.py +0 -387
  324. schemathesis-4.0.0a3/src/schemathesis/pytest/lazy.py +0 -273
  325. schemathesis-4.0.0a3/src/schemathesis/pytest/plugin.py +0 -299
  326. schemathesis-4.0.0a3/src/schemathesis/schemas.py +0 -790
  327. schemathesis-4.0.0a3/src/schemathesis/specs/openapi/checks.py +0 -650
  328. schemathesis-4.0.0a3/src/schemathesis/specs/openapi/examples.py +0 -446
  329. schemathesis-4.0.0a3/src/schemathesis/specs/openapi/expressions/__init__.py +0 -51
  330. schemathesis-4.0.0a3/src/schemathesis/specs/openapi/expressions/nodes.py +0 -151
  331. schemathesis-4.0.0a3/src/schemathesis/specs/openapi/expressions/parser.py +0 -115
  332. schemathesis-4.0.0a3/src/schemathesis/specs/openapi/links.py +0 -227
  333. schemathesis-4.0.0a3/src/schemathesis/specs/openapi/parameters.py +0 -402
  334. schemathesis-4.0.0a3/src/schemathesis/specs/openapi/patterns.py +0 -305
  335. schemathesis-4.0.0a3/src/schemathesis/specs/openapi/schemas.py +0 -1227
  336. schemathesis-4.0.0a3/src/schemathesis/specs/openapi/serialization.py +0 -364
  337. schemathesis-4.0.0a3/src/schemathesis/specs/openapi/stateful/__init__.py +0 -292
  338. schemathesis-4.0.0a3/test/__snapshots__/test_dereferencing/test_global_security_schemes_with_custom_scope.raw +0 -39
  339. schemathesis-4.0.0a3/test/__snapshots__/test_dereferencing/test_missing_file_in_resolution.raw +0 -56
  340. schemathesis-4.0.0a3/test/__snapshots__/test_hypothesis/test_health_check_failed_large_base_example.raw +0 -60
  341. schemathesis-4.0.0a3/test/__snapshots__/test_recoverable_errors/test_in_cli[1].raw +0 -67
  342. schemathesis-4.0.0a3/test/__snapshots__/test_recoverable_errors/test_in_cli[2].raw +0 -67
  343. schemathesis-4.0.0a3/test/__snapshots__/test_serialization/test_in_cli[Open API 3.0].raw +0 -53
  344. schemathesis-4.0.0a3/test/apps/openapi/_aiohttp/handlers.py +0 -295
  345. schemathesis-4.0.0a3/test/apps/openapi/schema.py +0 -901
  346. schemathesis-4.0.0a3/test/auth/__snapshots__/test_cli/test_conditional[Open API 3.0].raw +0 -39
  347. schemathesis-4.0.0a3/test/auth/__snapshots__/test_cli/test_custom_auth[Open API 3.0].raw +0 -39
  348. schemathesis-4.0.0a3/test/auth/__snapshots__/test_cli/test_explicit_auth_precedence[Open API 3.0-args0-Basic dXNlcjpwYXNz].raw +0 -39
  349. schemathesis-4.0.0a3/test/auth/__snapshots__/test_cli/test_explicit_auth_precedence[Open API 3.0-args1-Bearer EXPLICIT].raw +0 -39
  350. schemathesis-4.0.0a3/test/auth/__snapshots__/test_cli/test_multiple_auth_mechanisms_with_explicit_auth.raw +0 -39
  351. schemathesis-4.0.0a3/test/auth/__snapshots__/test_cli/test_multiple_threads[Open API 3.0].raw +0 -39
  352. schemathesis-4.0.0a3/test/auth/__snapshots__/test_cli/test_requests_auth[Open API 3.0].raw +0 -39
  353. schemathesis-4.0.0a3/test/auth/test_cli.py +0 -219
  354. schemathesis-4.0.0a3/test/cli/__snapshots__/test_cassettes/test_forbid_preserve_exact_bytes_without_cassette_path[Open API 3.0].raw +0 -7
  355. schemathesis-4.0.0a3/test/cli/__snapshots__/test_cassettes/test_run_subprocess[Open API 2.0].raw +0 -42
  356. schemathesis-4.0.0a3/test/cli/__snapshots__/test_cassettes/test_run_subprocess[Open API 3.0].raw +0 -42
  357. schemathesis-4.0.0a3/test/cli/__snapshots__/test_checks/test_positive_data_acceptance[args0].raw +0 -46
  358. schemathesis-4.0.0a3/test/cli/__snapshots__/test_checks/test_positive_data_acceptance[args10].raw +0 -65
  359. schemathesis-4.0.0a3/test/cli/__snapshots__/test_checks/test_positive_data_acceptance[args1].raw +0 -46
  360. schemathesis-4.0.0a3/test/cli/__snapshots__/test_checks/test_positive_data_acceptance[args2].raw +0 -65
  361. schemathesis-4.0.0a3/test/cli/__snapshots__/test_checks/test_positive_data_acceptance[args3].raw +0 -46
  362. schemathesis-4.0.0a3/test/cli/__snapshots__/test_checks/test_positive_data_acceptance[args4].raw +0 -65
  363. schemathesis-4.0.0a3/test/cli/__snapshots__/test_checks/test_positive_data_acceptance[args5].raw +0 -46
  364. schemathesis-4.0.0a3/test/cli/__snapshots__/test_checks/test_positive_data_acceptance[args6].raw +0 -65
  365. schemathesis-4.0.0a3/test/cli/__snapshots__/test_checks/test_positive_data_acceptance[args7].raw +0 -46
  366. schemathesis-4.0.0a3/test/cli/__snapshots__/test_checks/test_positive_data_acceptance_with_env_vars.raw +0 -65
  367. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_auth_override_on_protected_operation[Open API 2.0---auth='testwrong'].raw +0 -71
  368. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_auth_override_on_protected_operation[Open API 2.0--H Authorization Basic J3Rlc3Q6d3Jvbmcn].raw +0 -71
  369. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_auth_override_on_protected_operation[Open API 3.0---auth='testwrong'].raw +0 -71
  370. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_auth_override_on_protected_operation[Open API 3.0--H Authorization Basic J3Rlc3Q6d3Jvbmcn].raw +0 -71
  371. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_binary_payload.raw +0 -56
  372. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_chunked_encoding_error[Open API 3.0].raw +0 -53
  373. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_cli_run_changed_base_url[Open API 3.0].raw +0 -56
  374. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_cli_run_only_failure[Open API 2.0-1].raw +0 -56
  375. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_cli_run_only_failure[Open API 2.0-2].raw +0 -56
  376. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_cli_run_only_failure[Open API 3.0-1].raw +0 -56
  377. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_cli_run_only_failure[Open API 3.0-2].raw +0 -56
  378. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_complex_urlencoded_example.raw +0 -50
  379. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_connection_error[Open API 2.0-1].raw +0 -57
  380. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_connection_error[Open API 2.0-2].raw +0 -57
  381. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_connection_error[Open API 3.0-1].raw +0 -57
  382. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_connection_error[Open API 3.0-2].raw +0 -57
  383. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_connection_timeout[Open API 2.0-1].raw +0 -51
  384. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_connection_timeout[Open API 2.0-2].raw +0 -51
  385. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_connection_timeout[Open API 3.0-1].raw +0 -51
  386. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_connection_timeout[Open API 3.0-2].raw +0 -51
  387. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_custom_cli_option[Open API 3.0].raw +0 -43
  388. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_dont_skip_when_generation_is_possible[Open API 3.0].raw +0 -39
  389. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_empty_schema_file.raw +0 -14
  390. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_exit_first[Open API 3.0].raw +0 -55
  391. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_explicit_example_failure_output.raw +0 -56
  392. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_explicit_headers_in_output_on_errors[Open API 3.0].raw +0 -67
  393. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_explicit_query_token_sanitization[Open API 3.0].raw +0 -56
  394. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_filter_by[Open API 3.0---exclude-by=x-property != 42].raw +0 -39
  395. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_filter_by[Open API 3.0---include-by=x-property == 42].raw +0 -39
  396. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_graphql_url[foo-args0].raw +0 -39
  397. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_graphql_url[foo-args1].raw +0 -39
  398. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_graphql_url[graphql-args0].raw +0 -39
  399. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_graphql_url[graphql-args1].raw +0 -39
  400. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_group_errors.raw +0 -51
  401. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_invalid_operation[Open API 2.0-1].raw +0 -67
  402. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_invalid_operation[Open API 3.0-1].raw +0 -69
  403. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_invalid_schema_with_disabled_validation[3.0.2].raw +0 -65
  404. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_invalid_schema_with_disabled_validation[3.1.0].raw +0 -65
  405. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_invalid_yaml.raw +0 -15
  406. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_keyboard_interrupt[Open API 2.0-1].raw +0 -39
  407. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_keyboard_interrupt[Open API 3.0-1].raw +0 -39
  408. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_keyboard_interrupt_during_schema_loading.raw +0 -8
  409. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_keyboard_interrupt_threaded[Open API 2.0].raw +0 -39
  410. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_keyboard_interrupt_threaded[Open API 3.0].raw +0 -39
  411. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_long_operation_output.raw +0 -39
  412. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_long_payload.raw +0 -56
  413. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_malformed_json_deduplication[Open API 3.0].raw +0 -58
  414. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_max_response_time_invalid[Open API 2.0-1].raw +0 -59
  415. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_max_response_time_invalid[Open API 2.0-2].raw +0 -59
  416. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_max_response_time_invalid[Open API 3.0-1].raw +0 -59
  417. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_max_response_time_invalid[Open API 3.0-2].raw +0 -59
  418. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_missing_content_and_schema[cookie].raw +0 -51
  419. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_missing_content_and_schema[header].raw +0 -51
  420. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_missing_content_and_schema[path].raw +0 -51
  421. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_missing_content_and_schema[query].raw +0 -51
  422. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_multiple_errors.raw +0 -58
  423. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_multiple_failures_different_check[Open API 2.0].raw +0 -62
  424. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_multiple_failures_different_check[Open API 3.0].raw +0 -62
  425. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_multiple_failures_in_single_check.raw +0 -74
  426. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_multiple_failures_single_check[Open API 2.0].raw +0 -56
  427. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_multiple_failures_single_check[Open API 3.0].raw +0 -56
  428. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_nested_binary_in_yaml.raw +0 -39
  429. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_no_schema_in_media_type[Open API 3.0].raw +0 -39
  430. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_no_useless_traceback.raw +0 -54
  431. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_null_byte_in_header_probe.raw +0 -39
  432. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_proxy_error[Open API 3.0].raw +0 -51
  433. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_read_content_timeout[Open API 3.0].raw +0 -51
  434. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_recursive_reference_error_message.raw +0 -51
  435. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_register_check[AssertionError(Custom check failed!)-Open API 2.0].raw +0 -58
  436. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_register_check[AssertionError(Custom check failed!)-Open API 3.0].raw +0 -58
  437. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_register_check[AssertionError-Open API 2.0].raw +0 -56
  438. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_register_check[AssertionError-Open API 3.0].raw +0 -56
  439. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_remote_disconnected_error[Open API 3.0].raw +0 -16
  440. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_reserved_characters_in_operation_name.raw +0 -39
  441. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_response_payload_encoding[Open API 2.0].raw +0 -59
  442. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_response_payload_encoding[Open API 3.0].raw +0 -59
  443. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_response_schema_conformance_deduplication[Open API 2.0].raw +0 -70
  444. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_response_schema_conformance_deduplication[Open API 3.0].raw +0 -70
  445. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_run_output[args15].raw +0 -7
  446. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_run_output[args1].raw +0 -7
  447. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_run_output[args20].raw +0 -203
  448. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_run_output[args31].raw +0 -7
  449. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_run_output[args32].raw +0 -7
  450. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_run_output[args33].raw +0 -7
  451. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_schema_not_available[1].raw +0 -16
  452. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_schema_not_available[2].raw +0 -16
  453. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_skip_not_negated_tests[Open API 3.0].raw +0 -41
  454. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_skipped_on_no_explicit_examples.raw +0 -41
  455. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_status_code_conformance[Open API 2.0-1].raw +0 -59
  456. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_status_code_conformance[Open API 2.0-2].raw +0 -59
  457. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_status_code_conformance[Open API 3.0-1].raw +0 -59
  458. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_status_code_conformance[Open API 3.0-2].raw +0 -59
  459. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_unknown_schema_error[Open API 3.0].raw +0 -62
  460. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_unresolvable_reference_with_disabled_validation.raw +0 -67
  461. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_unsatisfiable[Open API 2.0-1].raw +0 -57
  462. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_unsatisfiable[Open API 2.0-2].raw +0 -57
  463. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_unsatisfiable[Open API 3.0-1].raw +0 -57
  464. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_unsatisfiable[Open API 3.0-2].raw +0 -57
  465. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_unsupported_regex.raw +0 -54
  466. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_useful_traceback[Open API 3.0].raw +0 -64
  467. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_wait_for_schema_not_enough.raw +0 -14
  468. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_warning_on_all_not_found.raw +0 -39
  469. schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_warning_on_unauthorized.raw +0 -51
  470. schemathesis-4.0.0a3/test/cli/__snapshots__/test_hooks/test_after_call[Open API 3.0].raw +0 -78
  471. schemathesis-4.0.0a3/test/cli/test_cassettes.py +0 -322
  472. schemathesis-4.0.0a3/test/cli/test_checks.py +0 -108
  473. schemathesis-4.0.0a3/test/cli/test_commands.py +0 -1646
  474. schemathesis-4.0.0a3/test/cli/test_crashes.py +0 -222
  475. schemathesis-4.0.0a3/test/cli/test_junitxml.py +0 -212
  476. schemathesis-4.0.0a3/test/cli/test_options.py +0 -22
  477. schemathesis-4.0.0a3/test/cli/test_targeted.py +0 -74
  478. schemathesis-4.0.0a3/test/code_samples/test_curl.py +0 -117
  479. schemathesis-4.0.0a3/test/conftest.py +0 -1108
  480. schemathesis-4.0.0a3/test/contrib/__snapshots__/test_unique_data/test_cli[None].raw +0 -39
  481. schemathesis-4.0.0a3/test/contrib/__snapshots__/test_unique_data/test_cli[raw_schema0].raw +0 -39
  482. schemathesis-4.0.0a3/test/contrib/__snapshots__/test_unique_data/test_cli[raw_schema1].raw +0 -39
  483. schemathesis-4.0.0a3/test/contrib/__snapshots__/test_unique_data/test_cli[raw_schema2].raw +0 -39
  484. schemathesis-4.0.0a3/test/contrib/__snapshots__/test_unique_data/test_cli_failure.raw +0 -56
  485. schemathesis-4.0.0a3/test/contrib/__snapshots__/test_unique_data/test_explicit_headers[1].raw +0 -39
  486. schemathesis-4.0.0a3/test/contrib/__snapshots__/test_unique_data/test_explicit_headers[2].raw +0 -39
  487. schemathesis-4.0.0a3/test/contrib/__snapshots__/test_unique_data/test_graphql_url.raw +0 -39
  488. schemathesis-4.0.0a3/test/contrib/openapi/__snapshots__/test_fill_missing_examples/test_fills_missing_examples.raw +0 -39
  489. schemathesis-4.0.0a3/test/contrib/openapi/test_fill_missing_examples.py +0 -9
  490. schemathesis-4.0.0a3/test/contrib/test_unique_data.py +0 -190
  491. schemathesis-4.0.0a3/test/coverage/__snapshots__/test_phase/test_unspecified_http_methods.raw +0 -131
  492. schemathesis-4.0.0a3/test/coverage/test_phase.py +0 -1418
  493. schemathesis-4.0.0a3/test/engine/test_checks.py +0 -911
  494. schemathesis-4.0.0a3/test/engine/test_engine.py +0 -1243
  495. schemathesis-4.0.0a3/test/experimental/test_experiments.py +0 -64
  496. schemathesis-4.0.0a3/test/hooks/test_filters.py +0 -104
  497. schemathesis-4.0.0a3/test/hooks/test_hooks.py +0 -503
  498. schemathesis-4.0.0a3/test/specs/graphql/__snapshots__/test_basic/test_disallow_null.raw +0 -58
  499. schemathesis-4.0.0a3/test/specs/graphql/__snapshots__/test_basic/test_filter_operations[--exclude-name=Query.getBooks].raw +0 -39
  500. schemathesis-4.0.0a3/test/specs/graphql/__snapshots__/test_basic/test_filter_operations[--include-name=Query.getBooks].raw +0 -39
  501. schemathesis-4.0.0a3/test/specs/graphql/__snapshots__/test_basic/test_schema_error[ntype Query {n 123(created Int!) Int!n}-.whatever].raw +0 -19
  502. schemathesis-4.0.0a3/test/specs/graphql/__snapshots__/test_basic/test_schema_error[ntype Query {n func(created Unknown!) Int!n}-.gql].raw +0 -14
  503. schemathesis-4.0.0a3/test/specs/graphql/__snapshots__/test_custom_scalars/test_custom_scalar_in_cli.raw +0 -54
  504. schemathesis-4.0.0a3/test/specs/graphql/test_basic.py +0 -321
  505. schemathesis-4.0.0a3/test/specs/graphql/test_custom_scalars.py +0 -90
  506. schemathesis-4.0.0a3/test/specs/openapi/__snapshots__/test_checks/test_method_not_allowed[basic-post].raw +0 -66
  507. schemathesis-4.0.0a3/test/specs/openapi/__snapshots__/test_checks/test_method_not_allowed[success-get].raw +0 -46
  508. schemathesis-4.0.0a3/test/specs/openapi/__snapshots__/test_checks/test_missing_required_header[basic-Authorization-406].raw +0 -46
  509. schemathesis-4.0.0a3/test/specs/openapi/__snapshots__/test_checks/test_missing_required_header[success-Authorization-200].raw +0 -66
  510. schemathesis-4.0.0a3/test/specs/openapi/__snapshots__/test_checks/test_missing_required_header[success-X-API-Key-1-200].raw +0 -46
  511. schemathesis-4.0.0a3/test/specs/openapi/__snapshots__/test_checks/test_missing_required_header[success-X-API-Key-1-406].raw +0 -66
  512. schemathesis-4.0.0a3/test/specs/openapi/__snapshots__/test_examples/test_network_error_with_flaky_generation.raw +0 -51
  513. schemathesis-4.0.0a3/test/specs/openapi/__snapshots__/test_examples/test_parameter_override.raw +0 -39
  514. schemathesis-4.0.0a3/test/specs/openapi/__snapshots__/test_ignored_auth/test_explicit_auth_cli[Open API 3.0].raw +0 -39
  515. schemathesis-4.0.0a3/test/specs/openapi/__snapshots__/test_ignored_auth/test_stateful_in_cli_no_error[Open API 3.0-False].raw +0 -43
  516. schemathesis-4.0.0a3/test/specs/openapi/__snapshots__/test_ignored_auth/test_stateful_in_cli_no_error[Open API 3.0-True].raw +0 -62
  517. schemathesis-4.0.0a3/test/specs/openapi/__snapshots__/test_media_types/test_explicit_example_with_custom_media_type.raw +0 -52
  518. schemathesis-4.0.0a3/test/specs/openapi/stateful/__snapshots__/test_cli/test_default[Open API 3.0-1].raw +0 -65
  519. schemathesis-4.0.0a3/test/specs/openapi/stateful/__snapshots__/test_cli/test_default[Open API 3.0-2].raw +0 -65
  520. schemathesis-4.0.0a3/test/specs/openapi/stateful/__snapshots__/test_cli/test_filtered_out[Open API 3.0].raw +0 -59
  521. schemathesis-4.0.0a3/test/specs/openapi/stateful/__snapshots__/test_cli/test_generation_config[Open API 3.0].raw +0 -61
  522. schemathesis-4.0.0a3/test/specs/openapi/stateful/__snapshots__/test_cli/test_keyboard_interrupt[Open API 3.0].raw +0 -43
  523. schemathesis-4.0.0a3/test/specs/openapi/stateful/__snapshots__/test_cli/test_max_failures[Open API 3.0].raw +0 -78
  524. schemathesis-4.0.0a3/test/specs/openapi/stateful/__snapshots__/test_cli/test_missing_link[Open API 3.0].raw +0 -54
  525. schemathesis-4.0.0a3/test/specs/openapi/stateful/__snapshots__/test_cli/test_not_enough_links[Open API 3.0].raw +0 -56
  526. schemathesis-4.0.0a3/test/specs/openapi/stateful/__snapshots__/test_cli/test_proxy_error[Open API 3.0].raw +0 -54
  527. schemathesis-4.0.0a3/test/specs/openapi/stateful/__snapshots__/test_cli/test_stateful_only[Open API 3.0].raw +0 -61
  528. schemathesis-4.0.0a3/test/specs/openapi/stateful/__snapshots__/test_cli/test_stateful_only_with_error[Open API 3.0].raw +0 -54
  529. schemathesis-4.0.0a3/test/specs/openapi/stateful/conftest.py +0 -428
  530. schemathesis-4.0.0a3/test/specs/openapi/stateful/test_cli.py +0 -202
  531. schemathesis-4.0.0a3/test/specs/openapi/stateful/test_engine.py +0 -650
  532. schemathesis-4.0.0a3/test/specs/openapi/stateful/test_stateful.py +0 -259
  533. schemathesis-4.0.0a3/test/specs/openapi/test_checks.py +0 -319
  534. schemathesis-4.0.0a3/test/specs/openapi/test_examples.py +0 -1648
  535. schemathesis-4.0.0a3/test/specs/openapi/test_expressions.py +0 -237
  536. schemathesis-4.0.0a3/test/specs/openapi/test_ignored_auth.py +0 -477
  537. schemathesis-4.0.0a3/test/specs/openapi/test_media_types.py +0 -80
  538. schemathesis-4.0.0a3/test/specs/openapi/test_patterns.py +0 -167
  539. schemathesis-4.0.0a3/test/specs/openapi/test_serializing.py +0 -586
  540. schemathesis-4.0.0a3/test/test_async.py +0 -111
  541. schemathesis-4.0.0a3/test/test_common_parameters.py +0 -164
  542. schemathesis-4.0.0a3/test/test_dereferencing.py +0 -852
  543. schemathesis-4.0.0a3/test/test_filters.py +0 -148
  544. schemathesis-4.0.0a3/test/test_hypothesis.py +0 -507
  545. schemathesis-4.0.0a3/test/test_lazy.py +0 -566
  546. schemathesis-4.0.0a3/test/test_parameters.py +0 -595
  547. schemathesis-4.0.0a3/test/test_parametrization.py +0 -766
  548. schemathesis-4.0.0a3/test/test_petstore.py +0 -302
  549. schemathesis-4.0.0a3/test/test_pytest.py +0 -887
  550. schemathesis-4.0.0a3/test/test_recoverable_errors.py +0 -115
  551. schemathesis-4.0.0a3/test/test_required.py +0 -107
  552. schemathesis-4.0.0a3/test/test_serialization.py +0 -534
  553. schemathesis-4.0.0a3/test/test_stateful.py +0 -235
  554. schemathesis-4.0.0a3/test/utils.py +0 -213
  555. schemathesis-4.0.0a3/test-corpus/test_corpus.py +0 -253
  556. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/.dockerignore +0 -0
  557. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/.github/FUNDING.yml +0 -0
  558. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
  559. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
  560. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/.github/PULL_REQUEST_TEMPLATE.md +0 -0
  561. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/.github/dependabot.yml +0 -0
  562. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/.github/workflows/codspeed.yml +0 -0
  563. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/.github/workflows/commit.yml +0 -0
  564. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/.github/workflows/example-build.yml +0 -0
  565. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/.github/workflows/example-no-build.yml +0 -0
  566. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/.github/workflows/master_update.yml +0 -0
  567. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/.github/workflows/release.yml +0 -0
  568. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/.github/workflows/test-corpus.yml +0 -0
  569. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/.github/workflows/test-hypothesis.yml +0 -0
  570. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/.github/workflows/update-pre-commit.yml +0 -0
  571. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/.gitignore +0 -0
  572. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/.readthedocs.yml +0 -0
  573. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/.rstcheck.cfg +0 -0
  574. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/.yamllint +0 -0
  575. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/ARCHITECTURE.md +0 -0
  576. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/CITATION.cff +0 -0
  577. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/CODE_OF_CONDUCT.md +0 -0
  578. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/CONTRIBUTING.rst +0 -0
  579. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/Dockerfile +0 -0
  580. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/Dockerfile.bookworm +0 -0
  581. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/LICENSE +0 -0
  582. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/SECURITY.md +0 -0
  583. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/benches/cli.py +0 -0
  584. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/benches/coverage_phase.py +0 -0
  585. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/benches/references.py +0 -0
  586. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/benches/schema.py +0 -0
  587. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/changelog.py +0 -0
  588. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/codecov.yml +0 -0
  589. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/corpus/data/graphql.tar.gz +0 -0
  590. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/corpus/data/openapi-3.0.tar.gz +0 -0
  591. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/corpus/data/openapi-3.1.tar.gz +0 -0
  592. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/corpus/data/swagger-2.0.tar.gz +0 -0
  593. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/corpus/tools.py +0 -0
  594. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/docs/Makefile +0 -0
  595. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/docs/additional-content.rst +0 -0
  596. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/docs/api.rst +0 -0
  597. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/docs/auth.rst +0 -0
  598. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/docs/cli.rst +0 -0
  599. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/docs/conf.py +0 -0
  600. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/docs/continuous_integration.rst +0 -0
  601. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/docs/data-generation.rst +0 -0
  602. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/docs/examples.rst +0 -0
  603. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/docs/extending.rst +0 -0
  604. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/docs/faq.rst +0 -0
  605. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/docs/getting-started.rst +0 -0
  606. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/docs/graphql.rst +0 -0
  607. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/docs/index.rst +0 -0
  608. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/docs/python.rst +0 -0
  609. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/docs/recipes.rst +0 -0
  610. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/docs/requirements.txt +0 -0
  611. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/docs/sanitizing.rst +0 -0
  612. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/docs/service.rst +0 -0
  613. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/docs/stateful.rst +0 -0
  614. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/docs/targeted.rst +0 -0
  615. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/example/Dockerfile +0 -0
  616. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/example/README.md +0 -0
  617. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/example/app.py +0 -0
  618. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/example/compose.yml +0 -0
  619. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/example/openapi.json +0 -0
  620. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/example/requirements-app.in +0 -0
  621. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/example/requirements-app.txt +0 -0
  622. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/example/requirements-pytest.in +0 -0
  623. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/example/requirements-pytest.txt +0 -0
  624. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/example/tests/__init__.py +0 -0
  625. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/example/tests/conftest.py +0 -0
  626. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/example/tests/extensions.py +0 -0
  627. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/example/tests/test_app.py +0 -0
  628. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/img/demo.gif +0 -0
  629. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/mypy.ini +0 -0
  630. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/__init__.py +0 -0
  631. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/auths.py +0 -0
  632. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/checks.py +0 -0
  633. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/cli/__main__.py +0 -0
  634. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/cli/commands/__init__.py +0 -0
  635. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/cli/commands/run/events.py +0 -0
  636. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/cli/commands/run/handlers/__init__.py +0 -0
  637. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/cli/commands/run/handlers/base.py +0 -0
  638. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/cli/commands/run/loaders.py +0 -0
  639. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/cli/constants.py +0 -0
  640. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/cli/core.py +0 -0
  641. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/cli/ext/__init__.py +0 -0
  642. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/cli/ext/fs.py +0 -0
  643. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/cli/hooks.py +0 -0
  644. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/contrib/__init__.py +0 -0
  645. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/contrib/openapi/__init__.py +0 -0
  646. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/contrib/openapi/fill_missing_examples.py +0 -0
  647. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/core/compat.py +0 -0
  648. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/core/control.py +0 -0
  649. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/core/curl.py +0 -0
  650. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/core/deserialization.py +0 -0
  651. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/core/fs.py +0 -0
  652. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/core/lazy_import.py +0 -0
  653. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/core/loaders.py +0 -0
  654. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/core/marks.py +0 -0
  655. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/core/media_types.py +0 -0
  656. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/core/output/__init__.py +0 -0
  657. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/core/output/sanitization.py +0 -0
  658. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/core/rate_limit.py +0 -0
  659. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/core/registries.py +0 -0
  660. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/core/result.py +0 -0
  661. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/core/transport.py +0 -0
  662. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/core/validation.py +0 -0
  663. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/core/version.py +0 -0
  664. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/engine/__init__.py +0 -0
  665. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/engine/context.py +0 -0
  666. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/engine/control.py +0 -0
  667. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/engine/phases/probes.py +0 -0
  668. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/engine/phases/stateful/__init__.py +0 -0
  669. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/engine/phases/stateful/context.py +0 -0
  670. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/engine/recorder.py +0 -0
  671. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/generation/__init__.py +0 -0
  672. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/generation/case.py +0 -0
  673. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/generation/hypothesis/__init__.py +0 -0
  674. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/generation/hypothesis/examples.py +0 -0
  675. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/generation/hypothesis/given.py +0 -0
  676. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/generation/hypothesis/reporting.py +0 -0
  677. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/generation/hypothesis/strategies.py +0 -0
  678. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/generation/meta.py +0 -0
  679. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/generation/modes.py +0 -0
  680. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/generation/overrides.py +0 -0
  681. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/generation/stateful/__init__.py +0 -0
  682. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/generation/targets.py +0 -0
  683. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/graphql/__init__.py +0 -0
  684. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/graphql/checks.py +0 -0
  685. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/graphql/loaders.py +0 -0
  686. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/hooks.py +0 -0
  687. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/openapi/__init__.py +0 -0
  688. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/openapi/generation/__init__.py +0 -0
  689. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/openapi/generation/filters.py +0 -0
  690. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/openapi/loaders.py +0 -0
  691. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/py.typed +0 -0
  692. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/pytest/__init__.py +0 -0
  693. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/pytest/control_flow.py +0 -0
  694. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/pytest/loaders.py +0 -0
  695. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/python/__init__.py +0 -0
  696. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/python/asgi.py +0 -0
  697. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/python/wsgi.py +0 -0
  698. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/specs/__init__.py +0 -0
  699. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/specs/graphql/__init__.py +0 -0
  700. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/specs/graphql/_cache.py +0 -0
  701. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/specs/graphql/nodes.py +0 -0
  702. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/specs/graphql/scalars.py +0 -0
  703. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/specs/graphql/schemas.py +0 -0
  704. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/specs/graphql/validation.py +0 -0
  705. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/specs/openapi/__init__.py +0 -0
  706. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/specs/openapi/_cache.py +0 -0
  707. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/specs/openapi/_hypothesis.py +0 -0
  708. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/specs/openapi/constants.py +0 -0
  709. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/specs/openapi/converter.py +0 -0
  710. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/specs/openapi/definitions.py +0 -0
  711. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/specs/openapi/expressions/errors.py +0 -0
  712. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/specs/openapi/expressions/extractors.py +0 -0
  713. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/specs/openapi/expressions/lexer.py +0 -0
  714. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/specs/openapi/formats.py +0 -0
  715. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/specs/openapi/media_types.py +0 -0
  716. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/specs/openapi/negative/__init__.py +0 -0
  717. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/specs/openapi/negative/mutations.py +0 -0
  718. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/specs/openapi/negative/types.py +0 -0
  719. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/specs/openapi/negative/utils.py +0 -0
  720. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/specs/openapi/references.py +0 -0
  721. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/specs/openapi/security.py +0 -0
  722. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/specs/openapi/stateful/control.py +0 -0
  723. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/specs/openapi/utils.py +0 -0
  724. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/transport/__init__.py +0 -0
  725. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/transport/asgi.py +0 -0
  726. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/transport/prepare.py +0 -0
  727. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/transport/requests.py +0 -0
  728. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/transport/serialization.py +0 -0
  729. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/src/schemathesis/transport/wsgi.py +0 -0
  730. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/__init__.py +0 -0
  731. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/_pytest/__init__.py +0 -0
  732. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/_pytest/test_markers.py +0 -0
  733. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/apps/__init__.py +0 -0
  734. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/apps/_graphql/__init__.py +0 -0
  735. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/apps/_graphql/_fastapi/__init__.py +0 -0
  736. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/apps/_graphql/_fastapi/app.py +0 -0
  737. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/apps/_graphql/_flask/__init__.py +0 -0
  738. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/apps/_graphql/_flask/app.py +0 -0
  739. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/apps/_graphql/schema.py +0 -0
  740. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/apps/cp1252_app.py +0 -0
  741. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/apps/hooks.py +0 -0
  742. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/apps/openapi/__init__.py +0 -0
  743. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/apps/openapi/_aiohttp/__init__.py +0 -0
  744. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/apps/openapi/_aiohttp/app.py +0 -0
  745. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/apps/openapi/_fastapi/__init__.py +0 -0
  746. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/apps/openapi/_fastapi/app.py +0 -0
  747. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/apps/openapi/_flask/__init__.py +0 -0
  748. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/apps/openapi/_flask/app.py +0 -0
  749. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/auth/__init__.py +0 -0
  750. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/auth/conftest.py +0 -0
  751. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/auth/test_provider.py +0 -0
  752. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/auth/test_pytest.py +0 -0
  753. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/cli/__init__.py +0 -0
  754. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/cli/__snapshots__/test_checks/test_positive_data_acceptance[args8].raw +0 -0
  755. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/cli/__snapshots__/test_checks/test_positive_data_acceptance[args9].raw +0 -0
  756. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/cli/__snapshots__/test_commands/test_auth_and_authorization_header_are_disallowed[Open API 3.0-Authorization].raw +0 -0
  757. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/cli/__snapshots__/test_commands/test_auth_and_authorization_header_are_disallowed[Open API 3.0-authorization].raw +0 -0
  758. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/cli/__snapshots__/test_commands/test_certificate_only_key.raw +0 -0
  759. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/cli/__snapshots__/test_commands/test_commands_help.raw +0 -0
  760. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/cli/__snapshots__/test_commands/test_duplicated_filters[Open API 3.0].raw +0 -0
  761. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/cli/__snapshots__/test_commands/test_force_color_nocolor[Open API 3.0].raw +0 -0
  762. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/cli/__snapshots__/test_commands/test_hooks_module_not_found.raw +0 -0
  763. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/cli/__snapshots__/test_commands/test_hooks_with_inner_import_error.raw +0 -0
  764. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/cli/__snapshots__/test_commands/test_hypothesis_database_with_derandomize[Open API 3.0].raw +0 -0
  765. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/cli/__snapshots__/test_commands/test_invalid_filter[Open API 3.0].raw +0 -0
  766. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/cli/__snapshots__/test_commands/test_run_output[args0].raw +0 -0
  767. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/cli/__snapshots__/test_commands/test_run_output[args10].raw +0 -0
  768. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/cli/__snapshots__/test_commands/test_run_output[args11].raw +0 -0
  769. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/cli/__snapshots__/test_commands/test_run_output[args12].raw +0 -0
  770. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/cli/__snapshots__/test_commands/test_run_output[args13].raw +0 -0
  771. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/cli/__snapshots__/test_commands/test_run_output[args14].raw +0 -0
  772. /schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_run_output[args16].raw → /schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_run_output[args15].raw +0 -0
  773. /schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_run_output[args17].raw → /schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_run_output[args16].raw +0 -0
  774. /schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_run_output[args18].raw → /schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_run_output[args17].raw +0 -0
  775. /schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_run_output[args19].raw → /schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_run_output[args18].raw +0 -0
  776. /schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_run_output[args21].raw → /schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_run_output[args20].raw +0 -0
  777. /schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_run_output[args22].raw → /schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_run_output[args21].raw +0 -0
  778. /schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_run_output[args23].raw → /schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_run_output[args22].raw +0 -0
  779. /schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_run_output[args24].raw → /schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_run_output[args23].raw +0 -0
  780. /schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_run_output[args25].raw → /schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_run_output[args24].raw +0 -0
  781. /schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_run_output[args26].raw → /schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_run_output[args25].raw +0 -0
  782. /schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_run_output[args27].raw → /schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_run_output[args26].raw +0 -0
  783. /schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_run_output[args28].raw → /schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_run_output[args27].raw +0 -0
  784. /schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_run_output[args29].raw → /schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_run_output[args28].raw +0 -0
  785. /schemathesis-4.0.0a3/test/cli/__snapshots__/test_commands/test_run_output[args30].raw → /schemathesis-4.0.0a5/test/cli/__snapshots__/test_commands/test_run_output[args29].raw +0 -0
  786. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/cli/__snapshots__/test_commands/test_run_output[args2].raw +0 -0
  787. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/cli/__snapshots__/test_commands/test_run_output[args3].raw +0 -0
  788. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/cli/__snapshots__/test_commands/test_run_output[args4].raw +0 -0
  789. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/cli/__snapshots__/test_commands/test_run_output[args5].raw +0 -0
  790. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/cli/__snapshots__/test_commands/test_run_output[args6].raw +0 -0
  791. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/cli/__snapshots__/test_commands/test_run_output[args7].raw +0 -0
  792. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/cli/__snapshots__/test_commands/test_run_output[args8].raw +0 -0
  793. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/cli/__snapshots__/test_commands/test_run_output[args9].raw +0 -0
  794. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/cli/cert.pem +0 -0
  795. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/cli/test_hooks.py +0 -0
  796. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/cli/test_validation.py +0 -0
  797. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/core/__init__.py +0 -0
  798. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/core/test_deserialization.py +0 -0
  799. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/core/test_media_types.py +0 -0
  800. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/coverage/__init__.py +0 -0
  801. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/coverage/test_combinations.py +0 -0
  802. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/coverage/test_examples.py +0 -0
  803. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/data/petstore_v2.yaml +0 -0
  804. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/data/petstore_v3.yaml +0 -0
  805. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/data/relative_files/components/parameters.yaml +0 -0
  806. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/data/relative_files/components/responses.yaml +0 -0
  807. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/data/relative_files/components/schemas.yaml +0 -0
  808. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/data/relative_files/main.yaml +0 -0
  809. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/data/relative_files/paths/user-account.yaml +0 -0
  810. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/data/simple_openapi.yaml +0 -0
  811. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/data/simple_swagger.yaml +0 -0
  812. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/engine/__init__.py +0 -0
  813. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/engine/test_errors.py +0 -0
  814. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/engine/test_probes.py +0 -0
  815. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/engine/test_simulation.py +0 -0
  816. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/experimental/__snapshots__/test_experiments/test_not_enabled.raw +0 -0
  817. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/experimental/conftest.py +0 -0
  818. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/experimental/test_openapi_3_1.py +0 -0
  819. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/filters/__init__.py +0 -0
  820. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/filters/test_expressions.py +0 -0
  821. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/filters/test_matching.py +0 -0
  822. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/fixtures/__init__.py +0 -0
  823. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/fixtures/app_runner.py +0 -0
  824. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/fixtures/ctx.py +0 -0
  825. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/loaders/conftest.py +0 -0
  826. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/loaders/test_common.py +0 -0
  827. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/loaders/test_graphql.py +0 -0
  828. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/loaders/test_openapi.py +0 -0
  829. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/openapi/__init__.py +0 -0
  830. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/openapi/test_filters.py +0 -0
  831. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/specs/graphql/test_pytest.py +0 -0
  832. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/specs/openapi/blank.pdf +0 -0
  833. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/specs/openapi/conftest.py +0 -0
  834. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/specs/openapi/parameters/test_forms.py +0 -0
  835. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/specs/openapi/parameters/test_non_payload.py +0 -0
  836. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/specs/openapi/parameters/test_simple_payloads.py +0 -0
  837. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/specs/openapi/stateful/__init__.py +0 -0
  838. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/specs/openapi/test_hypothesis.py +0 -0
  839. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/specs/openapi/test_negative.py +0 -0
  840. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/specs/openapi/test_parameters.py +0 -0
  841. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/specs/openapi/test_randomized.py +0 -0
  842. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/specs/openapi/test_schemas.py +0 -0
  843. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/specs/openapi/test_security.py +0 -0
  844. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/specs/openapi/test_utils.py +0 -0
  845. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/test_app.py +0 -0
  846. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/test_asgi.py +0 -0
  847. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/test_converter.py +0 -0
  848. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/test_direct_access.py +0 -0
  849. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/test_examples.py +0 -0
  850. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/test_models.py +0 -0
  851. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/test_output.py +0 -0
  852. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/test_package.py +0 -0
  853. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/test_rate_limit.py +0 -0
  854. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/test_sanitizing_output.py +0 -0
  855. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/test_schemas.py +0 -0
  856. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/test_unittest.py +0 -0
  857. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test/test_wsgi.py +0 -0
  858. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test-corpus/conftest.py +0 -0
  859. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/test_server.sh +0 -0
  860. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/tox.ini +0 -0
  861. {schemathesis-4.0.0a3 → schemathesis-4.0.0a5}/typos.toml +0 -0
@@ -0,0 +1,123 @@
1
+ name: CI
2
+
3
+ on:
4
+ pull_request:
5
+ paths:
6
+ - "**.py"
7
+ - ".github/workflows/*.yml"
8
+ - ".pre-commit-config.yaml"
9
+ - ".relint.yml"
10
+ - ".yamllint"
11
+ - "pyproject.toml"
12
+ - "tox.ini"
13
+ - "mypy.ini"
14
+ push:
15
+ branches:
16
+ - master
17
+ workflow_dispatch:
18
+
19
+ env:
20
+ FORCE_COLOR: "1"
21
+ TOX_TESTENV_PASSENV: FORCE_COLOR
22
+
23
+ jobs:
24
+ pre-commit:
25
+ name: Generic pre-commit checks
26
+ runs-on: ubuntu-22.04
27
+ steps:
28
+ - uses: actions/checkout@v4.2.1
29
+ with:
30
+ fetch-depth: 1
31
+
32
+ - uses: actions/setup-python@v5
33
+ with:
34
+ python-version: 3.11
35
+
36
+ - uses: hynek/setup-cached-uv@v2
37
+
38
+ - run: uvx pre-commit run --all-files
39
+
40
+ docs:
41
+ name: Documentation
42
+ runs-on: ubuntu-22.04
43
+ steps:
44
+ - uses: actions/checkout@v4.2.1
45
+ with:
46
+ fetch-depth: 1
47
+ - uses: ammaraskar/sphinx-action@8.1.3
48
+ with:
49
+ docs-folder: "docs/"
50
+
51
+ tests:
52
+ strategy:
53
+ matrix:
54
+ os: [ubuntu-22.04, windows-2019]
55
+ python: ["3.9", "3.10", "3.11", "3.12", "3.13"]
56
+ fail-fast: false
57
+
58
+ name: Tests (Python ${{ matrix.python }} on ${{ matrix.os }} ${{ matrix.tox_env }})
59
+ runs-on: ${{ matrix.os }}
60
+ steps:
61
+ - uses: actions/checkout@v4.2.1
62
+ with:
63
+ fetch-depth: 1
64
+
65
+ - uses: actions/setup-python@v5
66
+ with:
67
+ python-version: ${{ matrix.python }}
68
+
69
+ - uses: hynek/setup-cached-uv@v2
70
+
71
+ - if: ${{ matrix.tox_env }}
72
+ run: uvx --with="tox" --with="tox-gh-actions" --with="tox-uv" tox -e ${{ matrix.tox_env }}
73
+
74
+ - if: ${{ !matrix.tox_env }}
75
+ run: uvx --with="tox" --with="tox-gh-actions" --with="tox-uv" tox
76
+
77
+ - name: Upload coverage to Codecov
78
+ uses: codecov/codecov-action@v5.3.1
79
+ with:
80
+ token: ${{ secrets.CODECOV_TOKEN }}
81
+
82
+ # On windows redirecting output to a file could lead to an error due to the default IO encoding being CP-1252
83
+ tests-pipe-with-encoding:
84
+ strategy:
85
+ matrix:
86
+ os: [ubuntu-22.04, windows-2019]
87
+ fail-fast: false
88
+ name: Test piping output to a file with CP1252 encoding on ${{ matrix.os }}
89
+ runs-on: ${{ matrix.os }}
90
+ steps:
91
+ - uses: actions/checkout@v4.2.1
92
+ with:
93
+ fetch-depth: 1
94
+
95
+ - uses: actions/setup-python@v5
96
+ with:
97
+ python-version: "3.12"
98
+
99
+ - uses: hynek/setup-cached-uv@v2
100
+
101
+ - run: uv tool install ".[dev]"
102
+
103
+ - run: uv tool run schemathesis run /openapi.json --app=cp1252_app:app -c custom_check > out.txt || true
104
+ working-directory: ./test/apps
105
+ env:
106
+ SCHEMATHESIS_HOOKS: hooks
107
+ PYTHONIOENCODING: cp1252
108
+
109
+ - run: |
110
+ if grep -Fq "UnicodeEncodeError" "out.txt"; then
111
+ echo "Failed!"
112
+ exit 1
113
+ fi
114
+ working-directory: ./test/apps
115
+ shell: bash
116
+
117
+ spell-check:
118
+ name: Spell Check
119
+ runs-on: ubuntu-22.04
120
+ steps:
121
+ - uses: actions/checkout@v4
122
+
123
+ - uses: crate-ci/typos@master
@@ -0,0 +1,66 @@
1
+ # For most projects, this workflow file will not need changing; you simply need
2
+ # to commit it to your repository.
3
+ #
4
+ # You may wish to alter this file to override the set of languages analyzed,
5
+ # or to provide custom queries or build logic.
6
+ name: "CodeQL"
7
+
8
+ on:
9
+ push:
10
+ branches: [master]
11
+ pull_request:
12
+ # The branches below must be a subset of the branches above
13
+ branches: [master]
14
+ schedule:
15
+ - cron: "0 15 * * 5"
16
+
17
+ jobs:
18
+ analyze:
19
+ name: Analyze
20
+ runs-on: ubuntu-22.04
21
+
22
+ strategy:
23
+ fail-fast: false
24
+ matrix:
25
+ # Override automatic language detection by changing the below list
26
+ # Supported options are ['csharp', 'cpp', 'go', 'java', 'javascript', 'python']
27
+ language: ["python"]
28
+ # Learn more...
29
+ # https://docs.github.com/en/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#overriding-automatic-language-detection
30
+
31
+ steps:
32
+ - name: Checkout repository
33
+ uses: actions/checkout@v4.2.1
34
+ with:
35
+ # We must fetch at least the immediate parents so that if this is
36
+ # a pull request then we can checkout the head.
37
+ fetch-depth: 2
38
+
39
+ # Initializes the CodeQL tools for scanning.
40
+ - name: Initialize CodeQL
41
+ uses: github/codeql-action/init@v3.28.9
42
+ with:
43
+ languages: ${{ matrix.language }}
44
+ # If you wish to specify custom queries, you can do so here or in a config file.
45
+ # By default, queries listed here will override any specified in a config file.
46
+ # Prefix the list here with "+" to use these queries and those in the config file.
47
+ # queries: ./path/to/local/query, your-org/your-repo/queries@main
48
+
49
+ # Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
50
+ # If this step fails, then you should remove it and run the build manually (see below)
51
+ - name: Autobuild
52
+ uses: github/codeql-action/autobuild@v3.28.9
53
+
54
+ # ℹ️ Command-line programs to run using the OS shell.
55
+ # 📚 https://git.io/JvXDl
56
+
57
+ # ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
58
+ # and modify them (or add more) to build your code if your project
59
+ # uses a compiled language
60
+
61
+ #- run: |
62
+ # make bootstrap
63
+ # make release
64
+
65
+ - name: Perform CodeQL Analysis
66
+ uses: github/codeql-action/analyze@v3.28.9
@@ -0,0 +1,54 @@
1
+ default_language_version:
2
+ python: python3.11
3
+
4
+ repos:
5
+ - repo: https://github.com/pre-commit/pre-commit-hooks
6
+ rev: v5.0.0
7
+ hooks:
8
+ - id: check-yaml
9
+ - id: end-of-file-fixer
10
+ - id: trailing-whitespace
11
+ exclude: ^.*\.(md|rst|raw)$
12
+ - id: debug-statements
13
+ - id: mixed-line-ending
14
+ args: [--fix=lf]
15
+ - id: check-merge-conflict
16
+
17
+ - repo: https://github.com/jorisroovers/gitlint
18
+ rev: v0.19.1
19
+ hooks:
20
+ - id: gitlint
21
+
22
+ - repo: https://github.com/adrienverge/yamllint
23
+ rev: v1.35.1
24
+ hooks:
25
+ - id: yamllint
26
+
27
+ - repo: https://github.com/pre-commit/mirrors-mypy
28
+ rev: v1.15.0
29
+ hooks:
30
+ - id: mypy
31
+ exclude: ^(docs/|test/|test-corpus/|example/|benches/).*$
32
+ args: ["--ignore-missing-imports"]
33
+ additional_dependencies: [types-requests, types-PyYAML]
34
+
35
+ - repo: https://github.com/astral-sh/ruff-pre-commit
36
+ rev: v0.9.7
37
+ hooks:
38
+ - id: ruff-format
39
+
40
+ - repo: https://github.com/astral-sh/ruff-pre-commit
41
+ rev: v0.9.7
42
+ hooks:
43
+ - id: ruff
44
+
45
+ - repo: https://github.com/myint/rstcheck
46
+ rev: v6.2.4
47
+ hooks:
48
+ - id: rstcheck
49
+ additional_dependencies:
50
+ - sphinx==7.1.2
51
+ - sphinx_rtd_theme==1.3
52
+ - sphinx-click==5.1
53
+ args:
54
+ - --ignore-roles=issue,version
@@ -0,0 +1,278 @@
1
+ Metadata-Version: 2.4
2
+ Name: schemathesis
3
+ Version: 4.0.0a5
4
+ Summary: Property-based testing framework for Open API and GraphQL based apps
5
+ Project-URL: Documentation, https://schemathesis.readthedocs.io/en/stable/
6
+ Project-URL: Changelog, https://schemathesis.readthedocs.io/en/stable/changelog.html
7
+ Project-URL: Bug Tracker, https://github.com/schemathesis/schemathesis
8
+ Project-URL: Funding, https://github.com/sponsors/Stranger6667
9
+ Project-URL: Source Code, https://github.com/schemathesis/schemathesis
10
+ Author-email: Dmitry Dygalo <dmitry@dygalo.dev>
11
+ Maintainer-email: Dmitry Dygalo <dmitry@dygalo.dev>
12
+ License-Expression: MIT
13
+ License-File: LICENSE
14
+ Keywords: graphql,hypothesis,openapi,pytest,testing
15
+ Classifier: Development Status :: 5 - Production/Stable
16
+ Classifier: Environment :: Console
17
+ Classifier: Framework :: Hypothesis
18
+ Classifier: Framework :: Pytest
19
+ Classifier: Intended Audience :: Developers
20
+ Classifier: License :: OSI Approved :: MIT License
21
+ Classifier: Operating System :: OS Independent
22
+ Classifier: Programming Language :: Python :: 3 :: Only
23
+ Classifier: Programming Language :: Python :: 3.9
24
+ Classifier: Programming Language :: Python :: 3.10
25
+ Classifier: Programming Language :: Python :: 3.11
26
+ Classifier: Programming Language :: Python :: 3.12
27
+ Classifier: Programming Language :: Python :: 3.13
28
+ Classifier: Programming Language :: Python :: Implementation :: CPython
29
+ Classifier: Topic :: Software Development :: Testing
30
+ Requires-Python: >=3.9
31
+ Requires-Dist: backoff<3.0,>=2.1.2
32
+ Requires-Dist: click<9.0,>=8.0
33
+ Requires-Dist: colorama<1.0,>=0.4
34
+ Requires-Dist: harfile<1.0,>=0.3.0
35
+ Requires-Dist: httpx<1.0,>=0.22.0
36
+ Requires-Dist: hypothesis-graphql<1,>=0.11.1
37
+ Requires-Dist: hypothesis-jsonschema<0.24,>=0.23.1
38
+ Requires-Dist: hypothesis<7,>=6.108.0
39
+ Requires-Dist: jsonschema[format]<5.0,>=4.18.0
40
+ Requires-Dist: junit-xml<2.0,>=1.9
41
+ Requires-Dist: pyrate-limiter<4.0,>=3.0
42
+ Requires-Dist: pytest-subtests<0.15.0,>=0.11
43
+ Requires-Dist: pytest<9,>=8
44
+ Requires-Dist: pyyaml<7.0,>=5.1
45
+ Requires-Dist: requests<3,>=2.22
46
+ Requires-Dist: rich>=13.9.4
47
+ Requires-Dist: starlette-testclient<1,>=0.4.1
48
+ Requires-Dist: typing-extensions>=4.12.2
49
+ Requires-Dist: werkzeug<4,>=0.16.0
50
+ Provides-Extra: bench
51
+ Requires-Dist: pytest-codspeed==2.2.1; extra == 'bench'
52
+ Provides-Extra: cov
53
+ Requires-Dist: coverage-enable-subprocess; extra == 'cov'
54
+ Requires-Dist: coverage[toml]>=5.3; extra == 'cov'
55
+ Provides-Extra: dev
56
+ Requires-Dist: aiohttp<4.0,>=3.9.1; extra == 'dev'
57
+ Requires-Dist: coverage-enable-subprocess; extra == 'dev'
58
+ Requires-Dist: coverage>=6; extra == 'dev'
59
+ Requires-Dist: coverage[toml]>=5.3; extra == 'dev'
60
+ Requires-Dist: fastapi>=0.86.0; extra == 'dev'
61
+ Requires-Dist: flask<3.0,>=2.1.1; extra == 'dev'
62
+ Requires-Dist: hypothesis-openapi<1,>=0.2; (python_version >= '3.10') and extra == 'dev'
63
+ Requires-Dist: pydantic>=1.10.2; extra == 'dev'
64
+ Requires-Dist: pytest-asyncio<1.0,>=0.18.0; extra == 'dev'
65
+ Requires-Dist: pytest-codspeed==2.2.1; extra == 'dev'
66
+ Requires-Dist: pytest-httpserver<2.0,>=1.0; extra == 'dev'
67
+ Requires-Dist: pytest-mock<4.0,>=3.7.0; extra == 'dev'
68
+ Requires-Dist: pytest-trio<1.0,>=0.8; extra == 'dev'
69
+ Requires-Dist: pytest-xdist<4.0,>=3; extra == 'dev'
70
+ Requires-Dist: sphinx; extra == 'dev'
71
+ Requires-Dist: sphinx-click; extra == 'dev'
72
+ Requires-Dist: sphinx-rtd-theme; extra == 'dev'
73
+ Requires-Dist: strawberry-graphql[fastapi]>=0.109.0; extra == 'dev'
74
+ Requires-Dist: syrupy<5.0,>=2; extra == 'dev'
75
+ Requires-Dist: trustme<1.0,>=0.9.0; extra == 'dev'
76
+ Provides-Extra: docs
77
+ Requires-Dist: sphinx; extra == 'docs'
78
+ Requires-Dist: sphinx-click; extra == 'docs'
79
+ Requires-Dist: sphinx-rtd-theme; extra == 'docs'
80
+ Provides-Extra: tests
81
+ Requires-Dist: aiohttp<4.0,>=3.9.1; extra == 'tests'
82
+ Requires-Dist: coverage>=6; extra == 'tests'
83
+ Requires-Dist: fastapi>=0.86.0; extra == 'tests'
84
+ Requires-Dist: flask<3.0,>=2.1.1; extra == 'tests'
85
+ Requires-Dist: hypothesis-openapi<1,>=0.2; (python_version >= '3.10') and extra == 'tests'
86
+ Requires-Dist: pydantic>=1.10.2; extra == 'tests'
87
+ Requires-Dist: pytest-asyncio<1.0,>=0.18.0; extra == 'tests'
88
+ Requires-Dist: pytest-httpserver<2.0,>=1.0; extra == 'tests'
89
+ Requires-Dist: pytest-mock<4.0,>=3.7.0; extra == 'tests'
90
+ Requires-Dist: pytest-trio<1.0,>=0.8; extra == 'tests'
91
+ Requires-Dist: pytest-xdist<4.0,>=3; extra == 'tests'
92
+ Requires-Dist: strawberry-graphql[fastapi]>=0.109.0; extra == 'tests'
93
+ Requires-Dist: syrupy<5.0,>=2; extra == 'tests'
94
+ Requires-Dist: trustme<1.0,>=0.9.0; extra == 'tests'
95
+ Description-Content-Type: text/markdown
96
+
97
+ <p align="center">
98
+ <a href="https://github.com/schemathesis/schemathesis/actions" target="_blank">
99
+ <img src="https://github.com/schemathesis/schemathesis/actions/workflows/build.yml/badge.svg" alt="Build">
100
+ </a>
101
+ <a href="https://codecov.io/gh/schemathesis/schemathesis/branch/master" target="_blank">
102
+ <img src="https://codecov.io/gh/schemathesis/schemathesis/branch/master/graph/badge.svg" alt="Coverage">
103
+ </a>
104
+ <a href="https://pypi.org/project/schemathesis/" target="_blank">
105
+ <img src="https://img.shields.io/pypi/v/schemathesis.svg" alt="Version">
106
+ </a>
107
+ <a href="https://pypi.org/project/schemathesis/" target="_blank">
108
+ <img src="https://img.shields.io/pypi/pyversions/schemathesis.svg" alt="Python versions">
109
+ </a>
110
+ <a href="https://discord.gg/R9ASRAmHnA" target="_blank">
111
+ <img src="https://img.shields.io/discord/938139740912369755" alt="Discord">
112
+ </a>
113
+ <a href="https://opensource.org/licenses/MIT" target="_blank">
114
+ <img src="https://img.shields.io/pypi/l/schemathesis.svg" alt="License">
115
+ </a>
116
+ </p>
117
+
118
+ ## Schemathesis
119
+
120
+ > ⚠️ You are viewing the Schemathesis V4 README (Work in Progress) ⚠️
121
+
122
+ > This branch is under active development, with substantial changes expected before stabilization. While V4 is fully functional and passing tests, some features are missing, and the documentation may be outdated.
123
+
124
+ > For the stable release, see the [V3 branch](https://github.com/schemathesis/schemathesis/tree/v3).
125
+
126
+ > 💡 Have feedback? Share your thoughts in [this discussion](https://github.com/schemathesis/schemathesis/discussions/2677)!
127
+
128
+ Schemathesis is an API testing tool that automatically finds crashes and validates spec compliance.
129
+
130
+ <p align="center">
131
+ <img src="https://raw.githubusercontent.com/schemathesis/schemathesis/master/img/demo.gif" alt="Schemathesis Demo"/>
132
+ </p>
133
+
134
+ <p align="center">
135
+ <i>Finding server crashes in the Demo API.</i>
136
+ </p>
137
+
138
+ ### Highlights
139
+
140
+ - 🎯 **Catches Hard-to-Find Bugs**: Automatically uncover crashes and spec violations that manual testing might miss.
141
+
142
+ - ⚡ **Accelerates Testing**: Generate a wide range of test cases directly from your API schema.
143
+
144
+ - 🧩 **Integrates Seamlessly**: Works with popular API formats such as OpenAPI and GraphQL, and easily integrates into your existing CI/CD workflows.
145
+
146
+ - 🔧 **Customizable and Extendable**: Leverage Python extensions to configure and extend your test generation.
147
+
148
+ - 🐞 **Simplifies Debugging**: Detailed reports and reproducible test cases with cURL commands streamline troubleshooting.
149
+
150
+ - 🔬 **Proven by Research**: Validated through academic studies on API testing automation, featured in the [ICSE 2022 paper](https://ieeexplore.ieee.org/document/9793781) on semantics-aware fuzzing, and recognized in an [ACM survey](https://dl.acm.org/doi/10.1145/3617175) as a state-of-the-art RESTful API testing tool.
151
+
152
+ ## Installation
153
+
154
+ Use Schemathesis via Docker, or install it from [PyPI](https://pypi.org/project/schemathesis/)
155
+
156
+ ```console
157
+ # Via Docker.
158
+ $ docker pull schemathesis/schemathesis:stable
159
+
160
+ # With pip.
161
+ $ pip install schemathesis
162
+ ```
163
+
164
+ ## Getting Started
165
+
166
+ Schemathesis works as a standalone CLI:
167
+
168
+ ```console
169
+ docker run schemathesis/schemathesis:stable
170
+ run --checks all https://example.schemathesis.io/openapi.json
171
+ # Or when installed with pip
172
+ schemathesis run --checks all https://example.schemathesis.io/openapi.json
173
+ ```
174
+
175
+ Or a Python library:
176
+
177
+ ```python
178
+ import schemathesis
179
+
180
+ schema = schemathesis.openapi.from_url("https://example.schemathesis.io/openapi.json")
181
+
182
+
183
+ @schema.parametrize()
184
+ def test_api(case):
185
+ case.call_and_validate()
186
+ ```
187
+
188
+ See a complete working example project in the [/example](https://github.com/schemathesis/schemathesis/tree/master/example) directory.
189
+
190
+ Schemathesis can be easily integrated into your CI/CD pipeline using GitHub Actions. Add this block to your GitHub Actions to run Schemathesis against your API:
191
+
192
+ ```yaml
193
+ api-tests:
194
+ runs-on: ubuntu-latest
195
+ steps:
196
+ - uses: schemathesis/action@v1
197
+ with:
198
+ schema: "https://example.schemathesis.io/openapi.json"
199
+ ```
200
+
201
+ For more details, check out our [GitHub Action](https://github.com/schemathesis/action) repository or see our [GitHub Tutorial](https://docs.schemathesis.io/tutorials/github).
202
+
203
+ ## Who's Using Schemathesis?
204
+
205
+ Schemathesis is used by a number of projects and companies, including direct usage or integration into other tools:
206
+
207
+ - Abstract Machines ([Magistrala](https://github.com/absmach/magistrala))
208
+ - Bundesstelle für Open Data ([smard-api](https://github.com/bundesAPI/smard-api))
209
+ - [CheckMK](https://github.com/Checkmk/checkmk)
210
+ - Chronosphere.io ([Calyptia](https://github.com/chronosphereio/calyptia-api))
211
+ - HXSecurity ([DongTai](https://github.com/HXSecurity/DongTai))
212
+ - Netflix ([Dispatch](https://github.com/Netflix/dispatch))
213
+ - [Pixie](https://github.com/pixie-io/pixie)
214
+ - [Qdrant](https://github.com/qdrant/qdrant)
215
+ - Spotify ([Backstage](https://github.com/backstage/backstage))
216
+ - [Weechat](https://github.com/weechat/weechat)
217
+ - WordPress ([OpenVerse](https://github.com/WordPress/openverse))
218
+
219
+ ## Testimonials
220
+
221
+ "_The world needs modern, spec-based API tests, so we can deliver APIs as-designed. Schemathesis is the right tool for that job._"
222
+
223
+ <div>Emmanuel Paraskakis - <strong>Level 250</strong></div>
224
+
225
+ ---
226
+
227
+ "_Schemathesis is the only sane way to thoroughly test an API._"
228
+
229
+ <div>Zdenek Nemec - <strong>superface.ai</strong></div>
230
+
231
+ ---
232
+
233
+ "_The tool is absolutely amazing as it can do the negative scenario testing instead of me and much faster! Before I was doing the same tests in Postman client. But it's much slower and brings maintenance burden._"
234
+
235
+ <div>Luděk Nový - <strong>JetBrains</strong></div>
236
+
237
+ ---
238
+
239
+ "_Schemathesis is the best tool for fuzz testing of REST API on the market. We are at Red Hat use it for examining our applications in functional and integrations testing levels._"
240
+
241
+ <div>Dmitry Misharov - <strong>RedHat</strong></div>
242
+
243
+ ---
244
+
245
+ "_There are different levels of usability and documentation quality among these tools which have been reported, where Schemathesis clearly stands out among the most user-friendly and industry-strength tools._"
246
+
247
+ <div>Testing RESTful APIs: A Survey - <strong>a research paper by Golmohammadi, at al</strong></div>
248
+
249
+ ---
250
+
251
+ ## Contributing
252
+
253
+ We welcome contributions in code and are especially interested in learning about your use cases. Your input is essential for improving Schemathesis and directly influences future updates.
254
+
255
+ ### How to Contribute
256
+
257
+ 1. Discuss ideas and questions through [GitHub issues](https://github.com/schemathesis/schemathesis/issues) or on our [Discord channel](https://discord.gg/R9ASRAmHnA).
258
+ 2. For code contributions, see our [contributing guidelines](https://github.com/schemathesis/schemathesis/blob/master/CONTRIBUTING.rst).
259
+ 3. Share your experience and thoughts using [this feedback form](https://forms.gle/kJ4hSxc1Yp6Ga96t5).
260
+
261
+ ### Why Your Input Matters
262
+
263
+ - Enables us to develop useful features and fix bugs faster
264
+ - Improves our test suite and documentation
265
+
266
+ Thank you for contributing to making Schemathesis better! 👍
267
+
268
+ ## Get in Touch
269
+
270
+ If you need assistance with integrating Schemathesis into your workflows or have specific questions, feel free to reach out at <a href="mailto:support@schemathesis.io">support@schemathesis.io</a>.
271
+
272
+ ## Acknowledgements
273
+
274
+ Schemathesis is built on top of <a href="https://hypothesis.works/" target="_blank">Hypothesis</a>, a powerful property-based testing library for Python.
275
+
276
+ ## License
277
+
278
+ This project is licensed under the terms of the [MIT license](https://opensource.org/licenses/MIT).