pallets-eco/flask-jsonschema

Tests require `simplejson` but this is not specified

adamtheturtle opened this issue · 0 comments

Either change tests.py to use:

try:
    import simplejson as json
except ImportError:
    import json

like the flask_jsonschema.py or add simplejson as a test dependency.