flask-jsonschema icon indicating copy to clipboard operation
flask-jsonschema copied to clipboard

Tests require `simplejson` but this is not specified

Open adamtheturtle opened this issue 8 years ago • 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.

adamtheturtle avatar May 30 '16 12:05 adamtheturtle