skip async tests if asgiref isn't installed

This commit is contained in:
David Lord 2021-04-06 15:31:16 -07:00
parent 00f5a3e55c
commit 61fbae8664
No known key found for this signature in database
GPG key ID: 7A1C87E3F5BC42A8

View file

@ -8,6 +8,8 @@ from flask import Flask
from flask import request
from flask.helpers import run_async
pytest.importorskip("asgiref")
class AppError(Exception):
pass