mirror of
https://github.com/kennethreitz/pydantic.git
synced 2026-06-05 23:00:18 +00:00
7c9c0d46aa
* fix toastedmarshmallow benchmarks and add marshmallow benchmarks * format benchmarks better * add runtime for netlify * remove sphinxcontrib-spelling==4.0.1 * remove docs linting * adding benchmarks section to docs
11 lines
281 B
Python
11 lines
281 B
Python
import toastedmarshmallow
|
|
from test_marshmallow import TestMarshmallow
|
|
|
|
|
|
class TestToastedMarshmallow(TestMarshmallow):
|
|
package = 'toasted-marshmallow'
|
|
|
|
def __init__(self, allow_extra):
|
|
super().__init__(allow_extra)
|
|
self.schema.jit = toastedmarshmallow.Jit
|