OXIESEC PANEL
- Current Dir:
/
/
snap
/
core24
/
888
/
usr
/
lib
/
python3
/
dist-packages
/
jsonschema
/
benchmarks
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
03/18/2025 08:12:15 AM
rwxr-xr-x
📄
__init__.py
70 bytes
08/14/2023 09:45:04 PM
rw-r--r--
📁
__pycache__
-
03/18/2025 08:12:15 AM
rwxr-xr-x
📁
issue232
-
03/18/2025 08:12:15 AM
rwxr-xr-x
📄
issue232.py
506 bytes
08/14/2023 09:45:04 PM
rw-r--r--
📄
json_schema_test_suite.py
320 bytes
08/14/2023 09:45:04 PM
rw-r--r--
Editing: issue232.py
Close
""" A performance benchmark using the example from issue #232. See https://github.com/python-jsonschema/jsonschema/pull/232. """ from pathlib import Path from pyperf import Runner from pyrsistent import m from jsonschema.tests._suite import Version import jsonschema issue232 = Version( path=Path(__file__).parent / "issue232", remotes=m(), name="issue232", ) if __name__ == "__main__": issue232.benchmark( runner=Runner(), Validator=jsonschema.Draft4Validator, )