├── .coveragerc ├── .github └── workflows │ ├── ci.yml │ └── pypi.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── .secrets.baseline ├── CHANGELOG.rst ├── LICENSE.txt ├── MANIFEST.in ├── Makefile ├── README.rst ├── bravado_core ├── __init__.py ├── _compat.py ├── _compat_typing.py ├── _decorators.py ├── content_type.py ├── docstring.py ├── exception.py ├── formatter.py ├── marshal.py ├── model.py ├── operation.py ├── param.py ├── py.typed ├── request.py ├── resource.py ├── response.py ├── schema.py ├── security_definition.py ├── security_requirement.py ├── spec.py ├── spec_flattening.py ├── swagger20_validator.py ├── unmarshal.py ├── util.py └── validate.py ├── docs ├── .gitignore ├── Makefile └── source │ ├── _static │ └── .keep │ ├── _templates │ └── .keep │ ├── changelog.rst │ ├── conf.py │ ├── config.rst │ ├── formats.rst │ ├── index.rst │ └── models.rst ├── mypy.ini ├── requirements-dev.txt ├── setup.cfg ├── setup.py ├── test-data └── 2.0 │ ├── composition │ ├── definitions │ │ └── definitions.json │ └── swagger.json │ ├── minimal_swagger │ └── swagger.json │ ├── models_referenced_by_polymorphic_models │ ├── definitions.json │ └── swagger.json │ ├── multi-file-multi-directory-spec │ ├── definitions.yaml │ ├── endpoint │ │ ├── parameters.yaml │ │ └── v1 │ │ │ ├── objects.yaml │ │ │ ├── paths.yaml │ │ │ └── responses.yaml │ ├── flattened-multi-file-multi-directory-spec.json │ └── swagger.yaml │ ├── multi-file-recursive │ ├── aux_2.json │ ├── auxiliary.json │ ├── flattened-multi-file-recursive-spec.json │ └── swagger.json │ ├── multi-file-specs-with-no-x-model │ ├── auxiliary.json │ ├── flattened-multi-file-with-no-xmodel.json │ └── swagger.json │ ├── petstore │ └── swagger.json │ ├── polymorphic_specs │ └── swagger.json │ ├── security │ └── swagger.json │ ├── simple │ └── swagger.json │ ├── simple_crossref │ ├── definitions │ │ └── definitions.json │ ├── operations │ │ └── operations.json │ ├── parameters │ │ └── parameters.json │ ├── paths │ │ └── paths.json │ ├── responses │ │ └── responses.json │ └── swagger.json │ ├── specs-with-None-in-ref │ ├── flattened.json │ └── swagger.json │ ├── x-model │ ├── pet.json │ └── swagger.json │ └── yaml │ ├── pet.yaml │ └── swagger.yml ├── tests ├── __init__.py ├── _decorators_test.py ├── conftest.py ├── docstring │ ├── __init__.py │ ├── conftest.py │ ├── create_operation_docstring_test.py │ ├── create_param_docstring_test.py │ └── formatted_type_test.py ├── exception │ ├── __init__.py │ └── wrap_exception_test.py ├── formatter │ ├── __init__.py │ ├── to_python_test.py │ └── to_wire_test.py ├── marshal │ ├── __init__.py │ ├── marshal_array_test.py │ ├── marshal_model_test.py │ ├── marshal_object_test.py │ ├── marshal_primitive_test.py │ └── marshal_schema_object_test.py ├── model │ ├── __init__.py │ ├── bless_models_test.py │ ├── collect_models_test.py │ ├── compare_test.py │ ├── conftest.py │ ├── create_model_docstring_test.py │ ├── create_model_repr_test.py │ ├── create_model_type_test.py │ ├── get_model_name_test.py │ ├── is_model_test.py │ ├── is_object_test.py │ ├── model_constructor_test.py │ ├── model_discovery_test.py │ ├── model_test.py │ ├── pickling_test.py │ ├── post_process_spec_test.py │ └── tag_models_test.py ├── operation │ ├── __init__.py │ ├── build_params_test.py │ ├── conftest.py │ ├── consumes_test.py │ ├── equality_test.py │ ├── operation_id_test.py │ ├── produces_test.py │ └── security_object_test.py ├── param │ ├── __init__.py │ ├── add_file_test.py │ ├── cast_request_param_test.py │ ├── conftest.py │ ├── get_param_type_spec_test.py │ ├── marshal_collection_format_test.py │ ├── marshal_param_test.py │ ├── string_to_boolean_test.py │ ├── stringify_body_test.py │ ├── unmarshal_collection_format_test.py │ └── unmarshal_param_test.py ├── profiling │ ├── __init__.py │ ├── conftest.py │ ├── marshal_profiler_test.py │ ├── unmarshal_profiler_test.py │ └── unmarshal_response_profiler_test.py ├── request │ ├── IncomingRequest_test.py │ ├── __init__.py │ └── unmarshal_request_test.py ├── resource │ ├── __init__.py │ ├── build_resources_test.py │ ├── conftest.py │ ├── convert_path_to_resource_test.py │ ├── deepcopy_test.py │ └── equality_test.py ├── response │ ├── IncomingResponse_test.py │ ├── __init__.py │ ├── get_response_spec_test.py │ ├── unmarshal_response_test.py │ ├── validate_response_body_test.py │ ├── validate_response_headers_test.py │ └── validate_response_test.py ├── schema │ ├── __init__.py │ ├── collapsed_properties_test.py │ ├── collapsed_required_test.py │ ├── conftest.py │ ├── get_format_test.py │ ├── get_spec_for_prop_test.py │ ├── handle_null_value_test.py │ ├── has_format_test.py │ ├── is_param_spec_test.py │ ├── is_prop_nullable_test.py │ └── is_required_test.py ├── security_test.py ├── spec │ ├── Spec │ │ ├── __init__.py │ │ ├── build_test.py │ │ ├── deepcopy_test.py │ │ ├── deref_flattened_spec_test.py │ │ ├── deref_test.py │ │ ├── equality_test.py │ │ ├── flattened_spec_test.py │ │ └── get_op_for_request_test.py │ ├── __init__.py │ ├── build_api_serving_url_test.py │ ├── build_http_handlers_test.py │ ├── from_dict_test.py │ └── pickling_test.py ├── swagger20_validator │ ├── __init__.py │ ├── enum_validator_test.py │ ├── format_validator_test.py │ ├── ref_validator_test.py │ ├── required_validator_test.py │ └── type_validator_test.py ├── unmarshal │ ├── __init__.py │ ├── unmarshal_array_test.py │ ├── unmarshal_model_test.py │ ├── unmarshal_object_test.py │ ├── unmarshal_primitive_test.py │ └── unmarshal_schema_object_test.py ├── util_test.py └── validate │ ├── __init__.py │ ├── conftest.py │ ├── validate_array_test.py │ ├── validate_object_test.py │ ├── validate_primitive_test.py │ ├── validate_schema_object_test.py │ └── validate_security_object_test.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/pypi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/.github/workflows/pypi.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.secrets.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/.secrets.baseline -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/README.rst -------------------------------------------------------------------------------- /bravado_core/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | version = '6.1.1' 3 | -------------------------------------------------------------------------------- /bravado_core/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/bravado_core/_compat.py -------------------------------------------------------------------------------- /bravado_core/_compat_typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/bravado_core/_compat_typing.py -------------------------------------------------------------------------------- /bravado_core/_decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/bravado_core/_decorators.py -------------------------------------------------------------------------------- /bravado_core/content_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/bravado_core/content_type.py -------------------------------------------------------------------------------- /bravado_core/docstring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/bravado_core/docstring.py -------------------------------------------------------------------------------- /bravado_core/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/bravado_core/exception.py -------------------------------------------------------------------------------- /bravado_core/formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/bravado_core/formatter.py -------------------------------------------------------------------------------- /bravado_core/marshal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/bravado_core/marshal.py -------------------------------------------------------------------------------- /bravado_core/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/bravado_core/model.py -------------------------------------------------------------------------------- /bravado_core/operation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/bravado_core/operation.py -------------------------------------------------------------------------------- /bravado_core/param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/bravado_core/param.py -------------------------------------------------------------------------------- /bravado_core/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bravado_core/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/bravado_core/request.py -------------------------------------------------------------------------------- /bravado_core/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/bravado_core/resource.py -------------------------------------------------------------------------------- /bravado_core/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/bravado_core/response.py -------------------------------------------------------------------------------- /bravado_core/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/bravado_core/schema.py -------------------------------------------------------------------------------- /bravado_core/security_definition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/bravado_core/security_definition.py -------------------------------------------------------------------------------- /bravado_core/security_requirement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/bravado_core/security_requirement.py -------------------------------------------------------------------------------- /bravado_core/spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/bravado_core/spec.py -------------------------------------------------------------------------------- /bravado_core/spec_flattening.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/bravado_core/spec_flattening.py -------------------------------------------------------------------------------- /bravado_core/swagger20_validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/bravado_core/swagger20_validator.py -------------------------------------------------------------------------------- /bravado_core/unmarshal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/bravado_core/unmarshal.py -------------------------------------------------------------------------------- /bravado_core/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/bravado_core/util.py -------------------------------------------------------------------------------- /bravado_core/validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/bravado_core/validate.py -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/source/_static/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/source/_templates/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/source/changelog.rst: -------------------------------------------------------------------------------- 1 | ../../CHANGELOG.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/docs/source/config.rst -------------------------------------------------------------------------------- /docs/source/formats.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/docs/source/formats.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/models.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/docs/source/models.rst -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/mypy.ini -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.rst 3 | 4 | [wheel] 5 | universal = True 6 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/setup.py -------------------------------------------------------------------------------- /test-data/2.0/composition/definitions/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/test-data/2.0/composition/definitions/definitions.json -------------------------------------------------------------------------------- /test-data/2.0/composition/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/test-data/2.0/composition/swagger.json -------------------------------------------------------------------------------- /test-data/2.0/minimal_swagger/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/test-data/2.0/minimal_swagger/swagger.json -------------------------------------------------------------------------------- /test-data/2.0/models_referenced_by_polymorphic_models/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/test-data/2.0/models_referenced_by_polymorphic_models/definitions.json -------------------------------------------------------------------------------- /test-data/2.0/models_referenced_by_polymorphic_models/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/test-data/2.0/models_referenced_by_polymorphic_models/swagger.json -------------------------------------------------------------------------------- /test-data/2.0/multi-file-multi-directory-spec/definitions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/test-data/2.0/multi-file-multi-directory-spec/definitions.yaml -------------------------------------------------------------------------------- /test-data/2.0/multi-file-multi-directory-spec/endpoint/parameters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/test-data/2.0/multi-file-multi-directory-spec/endpoint/parameters.yaml -------------------------------------------------------------------------------- /test-data/2.0/multi-file-multi-directory-spec/endpoint/v1/objects.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/test-data/2.0/multi-file-multi-directory-spec/endpoint/v1/objects.yaml -------------------------------------------------------------------------------- /test-data/2.0/multi-file-multi-directory-spec/endpoint/v1/paths.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/test-data/2.0/multi-file-multi-directory-spec/endpoint/v1/paths.yaml -------------------------------------------------------------------------------- /test-data/2.0/multi-file-multi-directory-spec/endpoint/v1/responses.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/test-data/2.0/multi-file-multi-directory-spec/endpoint/v1/responses.yaml -------------------------------------------------------------------------------- /test-data/2.0/multi-file-multi-directory-spec/flattened-multi-file-multi-directory-spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/test-data/2.0/multi-file-multi-directory-spec/flattened-multi-file-multi-directory-spec.json -------------------------------------------------------------------------------- /test-data/2.0/multi-file-multi-directory-spec/swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/test-data/2.0/multi-file-multi-directory-spec/swagger.yaml -------------------------------------------------------------------------------- /test-data/2.0/multi-file-recursive/aux_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/test-data/2.0/multi-file-recursive/aux_2.json -------------------------------------------------------------------------------- /test-data/2.0/multi-file-recursive/auxiliary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/test-data/2.0/multi-file-recursive/auxiliary.json -------------------------------------------------------------------------------- /test-data/2.0/multi-file-recursive/flattened-multi-file-recursive-spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/test-data/2.0/multi-file-recursive/flattened-multi-file-recursive-spec.json -------------------------------------------------------------------------------- /test-data/2.0/multi-file-recursive/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/test-data/2.0/multi-file-recursive/swagger.json -------------------------------------------------------------------------------- /test-data/2.0/multi-file-specs-with-no-x-model/auxiliary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/test-data/2.0/multi-file-specs-with-no-x-model/auxiliary.json -------------------------------------------------------------------------------- /test-data/2.0/multi-file-specs-with-no-x-model/flattened-multi-file-with-no-xmodel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/test-data/2.0/multi-file-specs-with-no-x-model/flattened-multi-file-with-no-xmodel.json -------------------------------------------------------------------------------- /test-data/2.0/multi-file-specs-with-no-x-model/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/test-data/2.0/multi-file-specs-with-no-x-model/swagger.json -------------------------------------------------------------------------------- /test-data/2.0/petstore/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/test-data/2.0/petstore/swagger.json -------------------------------------------------------------------------------- /test-data/2.0/polymorphic_specs/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/test-data/2.0/polymorphic_specs/swagger.json -------------------------------------------------------------------------------- /test-data/2.0/security/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/test-data/2.0/security/swagger.json -------------------------------------------------------------------------------- /test-data/2.0/simple/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/test-data/2.0/simple/swagger.json -------------------------------------------------------------------------------- /test-data/2.0/simple_crossref/definitions/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/test-data/2.0/simple_crossref/definitions/definitions.json -------------------------------------------------------------------------------- /test-data/2.0/simple_crossref/operations/operations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/test-data/2.0/simple_crossref/operations/operations.json -------------------------------------------------------------------------------- /test-data/2.0/simple_crossref/parameters/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/test-data/2.0/simple_crossref/parameters/parameters.json -------------------------------------------------------------------------------- /test-data/2.0/simple_crossref/paths/paths.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/test-data/2.0/simple_crossref/paths/paths.json -------------------------------------------------------------------------------- /test-data/2.0/simple_crossref/responses/responses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/test-data/2.0/simple_crossref/responses/responses.json -------------------------------------------------------------------------------- /test-data/2.0/simple_crossref/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/test-data/2.0/simple_crossref/swagger.json -------------------------------------------------------------------------------- /test-data/2.0/specs-with-None-in-ref/flattened.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/test-data/2.0/specs-with-None-in-ref/flattened.json -------------------------------------------------------------------------------- /test-data/2.0/specs-with-None-in-ref/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/test-data/2.0/specs-with-None-in-ref/swagger.json -------------------------------------------------------------------------------- /test-data/2.0/x-model/pet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/test-data/2.0/x-model/pet.json -------------------------------------------------------------------------------- /test-data/2.0/x-model/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/test-data/2.0/x-model/swagger.json -------------------------------------------------------------------------------- /test-data/2.0/yaml/pet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/test-data/2.0/yaml/pet.yaml -------------------------------------------------------------------------------- /test-data/2.0/yaml/swagger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/test-data/2.0/yaml/swagger.yml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/_decorators_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/_decorators_test.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/docstring/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | __author__ = 'spatel' 3 | -------------------------------------------------------------------------------- /tests/docstring/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/docstring/conftest.py -------------------------------------------------------------------------------- /tests/docstring/create_operation_docstring_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/docstring/create_operation_docstring_test.py -------------------------------------------------------------------------------- /tests/docstring/create_param_docstring_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/docstring/create_param_docstring_test.py -------------------------------------------------------------------------------- /tests/docstring/formatted_type_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/docstring/formatted_type_test.py -------------------------------------------------------------------------------- /tests/exception/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/exception/wrap_exception_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/exception/wrap_exception_test.py -------------------------------------------------------------------------------- /tests/formatter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/formatter/to_python_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/formatter/to_python_test.py -------------------------------------------------------------------------------- /tests/formatter/to_wire_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/formatter/to_wire_test.py -------------------------------------------------------------------------------- /tests/marshal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/marshal/marshal_array_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/marshal/marshal_array_test.py -------------------------------------------------------------------------------- /tests/marshal/marshal_model_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/marshal/marshal_model_test.py -------------------------------------------------------------------------------- /tests/marshal/marshal_object_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/marshal/marshal_object_test.py -------------------------------------------------------------------------------- /tests/marshal/marshal_primitive_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/marshal/marshal_primitive_test.py -------------------------------------------------------------------------------- /tests/marshal/marshal_schema_object_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/marshal/marshal_schema_object_test.py -------------------------------------------------------------------------------- /tests/model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/model/bless_models_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/model/bless_models_test.py -------------------------------------------------------------------------------- /tests/model/collect_models_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/model/collect_models_test.py -------------------------------------------------------------------------------- /tests/model/compare_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/model/compare_test.py -------------------------------------------------------------------------------- /tests/model/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/model/conftest.py -------------------------------------------------------------------------------- /tests/model/create_model_docstring_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/model/create_model_docstring_test.py -------------------------------------------------------------------------------- /tests/model/create_model_repr_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/model/create_model_repr_test.py -------------------------------------------------------------------------------- /tests/model/create_model_type_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/model/create_model_type_test.py -------------------------------------------------------------------------------- /tests/model/get_model_name_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/model/get_model_name_test.py -------------------------------------------------------------------------------- /tests/model/is_model_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/model/is_model_test.py -------------------------------------------------------------------------------- /tests/model/is_object_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/model/is_object_test.py -------------------------------------------------------------------------------- /tests/model/model_constructor_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/model/model_constructor_test.py -------------------------------------------------------------------------------- /tests/model/model_discovery_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/model/model_discovery_test.py -------------------------------------------------------------------------------- /tests/model/model_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/model/model_test.py -------------------------------------------------------------------------------- /tests/model/pickling_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/model/pickling_test.py -------------------------------------------------------------------------------- /tests/model/post_process_spec_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/model/post_process_spec_test.py -------------------------------------------------------------------------------- /tests/model/tag_models_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/model/tag_models_test.py -------------------------------------------------------------------------------- /tests/operation/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | __author__ = 'spatel' 3 | -------------------------------------------------------------------------------- /tests/operation/build_params_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/operation/build_params_test.py -------------------------------------------------------------------------------- /tests/operation/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/operation/conftest.py -------------------------------------------------------------------------------- /tests/operation/consumes_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/operation/consumes_test.py -------------------------------------------------------------------------------- /tests/operation/equality_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/operation/equality_test.py -------------------------------------------------------------------------------- /tests/operation/operation_id_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/operation/operation_id_test.py -------------------------------------------------------------------------------- /tests/operation/produces_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/operation/produces_test.py -------------------------------------------------------------------------------- /tests/operation/security_object_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/operation/security_object_test.py -------------------------------------------------------------------------------- /tests/param/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/param/add_file_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/param/add_file_test.py -------------------------------------------------------------------------------- /tests/param/cast_request_param_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/param/cast_request_param_test.py -------------------------------------------------------------------------------- /tests/param/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/param/conftest.py -------------------------------------------------------------------------------- /tests/param/get_param_type_spec_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/param/get_param_type_spec_test.py -------------------------------------------------------------------------------- /tests/param/marshal_collection_format_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/param/marshal_collection_format_test.py -------------------------------------------------------------------------------- /tests/param/marshal_param_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/param/marshal_param_test.py -------------------------------------------------------------------------------- /tests/param/string_to_boolean_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/param/string_to_boolean_test.py -------------------------------------------------------------------------------- /tests/param/stringify_body_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/param/stringify_body_test.py -------------------------------------------------------------------------------- /tests/param/unmarshal_collection_format_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/param/unmarshal_collection_format_test.py -------------------------------------------------------------------------------- /tests/param/unmarshal_param_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/param/unmarshal_param_test.py -------------------------------------------------------------------------------- /tests/profiling/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/profiling/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/profiling/conftest.py -------------------------------------------------------------------------------- /tests/profiling/marshal_profiler_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/profiling/marshal_profiler_test.py -------------------------------------------------------------------------------- /tests/profiling/unmarshal_profiler_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/profiling/unmarshal_profiler_test.py -------------------------------------------------------------------------------- /tests/profiling/unmarshal_response_profiler_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/profiling/unmarshal_response_profiler_test.py -------------------------------------------------------------------------------- /tests/request/IncomingRequest_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/request/IncomingRequest_test.py -------------------------------------------------------------------------------- /tests/request/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/request/unmarshal_request_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/request/unmarshal_request_test.py -------------------------------------------------------------------------------- /tests/resource/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resource/build_resources_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/resource/build_resources_test.py -------------------------------------------------------------------------------- /tests/resource/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/resource/conftest.py -------------------------------------------------------------------------------- /tests/resource/convert_path_to_resource_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/resource/convert_path_to_resource_test.py -------------------------------------------------------------------------------- /tests/resource/deepcopy_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/resource/deepcopy_test.py -------------------------------------------------------------------------------- /tests/resource/equality_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/resource/equality_test.py -------------------------------------------------------------------------------- /tests/response/IncomingResponse_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/response/IncomingResponse_test.py -------------------------------------------------------------------------------- /tests/response/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/response/get_response_spec_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/response/get_response_spec_test.py -------------------------------------------------------------------------------- /tests/response/unmarshal_response_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/response/unmarshal_response_test.py -------------------------------------------------------------------------------- /tests/response/validate_response_body_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/response/validate_response_body_test.py -------------------------------------------------------------------------------- /tests/response/validate_response_headers_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/response/validate_response_headers_test.py -------------------------------------------------------------------------------- /tests/response/validate_response_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/response/validate_response_test.py -------------------------------------------------------------------------------- /tests/schema/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | __author__ = 'spatel' 3 | -------------------------------------------------------------------------------- /tests/schema/collapsed_properties_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/schema/collapsed_properties_test.py -------------------------------------------------------------------------------- /tests/schema/collapsed_required_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/schema/collapsed_required_test.py -------------------------------------------------------------------------------- /tests/schema/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/schema/conftest.py -------------------------------------------------------------------------------- /tests/schema/get_format_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/schema/get_format_test.py -------------------------------------------------------------------------------- /tests/schema/get_spec_for_prop_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/schema/get_spec_for_prop_test.py -------------------------------------------------------------------------------- /tests/schema/handle_null_value_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/schema/handle_null_value_test.py -------------------------------------------------------------------------------- /tests/schema/has_format_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/schema/has_format_test.py -------------------------------------------------------------------------------- /tests/schema/is_param_spec_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/schema/is_param_spec_test.py -------------------------------------------------------------------------------- /tests/schema/is_prop_nullable_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/schema/is_prop_nullable_test.py -------------------------------------------------------------------------------- /tests/schema/is_required_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/schema/is_required_test.py -------------------------------------------------------------------------------- /tests/security_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/security_test.py -------------------------------------------------------------------------------- /tests/spec/Spec/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/spec/Spec/build_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/spec/Spec/build_test.py -------------------------------------------------------------------------------- /tests/spec/Spec/deepcopy_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/spec/Spec/deepcopy_test.py -------------------------------------------------------------------------------- /tests/spec/Spec/deref_flattened_spec_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/spec/Spec/deref_flattened_spec_test.py -------------------------------------------------------------------------------- /tests/spec/Spec/deref_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/spec/Spec/deref_test.py -------------------------------------------------------------------------------- /tests/spec/Spec/equality_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/spec/Spec/equality_test.py -------------------------------------------------------------------------------- /tests/spec/Spec/flattened_spec_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/spec/Spec/flattened_spec_test.py -------------------------------------------------------------------------------- /tests/spec/Spec/get_op_for_request_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/spec/Spec/get_op_for_request_test.py -------------------------------------------------------------------------------- /tests/spec/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/spec/build_api_serving_url_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/spec/build_api_serving_url_test.py -------------------------------------------------------------------------------- /tests/spec/build_http_handlers_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/spec/build_http_handlers_test.py -------------------------------------------------------------------------------- /tests/spec/from_dict_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/spec/from_dict_test.py -------------------------------------------------------------------------------- /tests/spec/pickling_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/spec/pickling_test.py -------------------------------------------------------------------------------- /tests/swagger20_validator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/swagger20_validator/enum_validator_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/swagger20_validator/enum_validator_test.py -------------------------------------------------------------------------------- /tests/swagger20_validator/format_validator_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/swagger20_validator/format_validator_test.py -------------------------------------------------------------------------------- /tests/swagger20_validator/ref_validator_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/swagger20_validator/ref_validator_test.py -------------------------------------------------------------------------------- /tests/swagger20_validator/required_validator_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/swagger20_validator/required_validator_test.py -------------------------------------------------------------------------------- /tests/swagger20_validator/type_validator_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/swagger20_validator/type_validator_test.py -------------------------------------------------------------------------------- /tests/unmarshal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unmarshal/unmarshal_array_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/unmarshal/unmarshal_array_test.py -------------------------------------------------------------------------------- /tests/unmarshal/unmarshal_model_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/unmarshal/unmarshal_model_test.py -------------------------------------------------------------------------------- /tests/unmarshal/unmarshal_object_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/unmarshal/unmarshal_object_test.py -------------------------------------------------------------------------------- /tests/unmarshal/unmarshal_primitive_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/unmarshal/unmarshal_primitive_test.py -------------------------------------------------------------------------------- /tests/unmarshal/unmarshal_schema_object_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/unmarshal/unmarshal_schema_object_test.py -------------------------------------------------------------------------------- /tests/util_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/util_test.py -------------------------------------------------------------------------------- /tests/validate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/validate/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/validate/conftest.py -------------------------------------------------------------------------------- /tests/validate/validate_array_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/validate/validate_array_test.py -------------------------------------------------------------------------------- /tests/validate/validate_object_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/validate/validate_object_test.py -------------------------------------------------------------------------------- /tests/validate/validate_primitive_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/validate/validate_primitive_test.py -------------------------------------------------------------------------------- /tests/validate/validate_schema_object_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/validate/validate_schema_object_test.py -------------------------------------------------------------------------------- /tests/validate/validate_security_object_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tests/validate/validate_security_object_test.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/bravado-core/HEAD/tox.ini --------------------------------------------------------------------------------