diff options
Diffstat (limited to 'tests/test_websupport.py')
-rw-r--r-- | tests/test_websupport.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_websupport.py b/tests/test_websupport.py index 10942798c..bf12cbade 100644 --- a/tests/test_websupport.py +++ b/tests/test_websupport.py @@ -9,6 +9,8 @@ :license: BSD, see LICENSE for details. """ +import pytest + from sphinx.websupport import WebSupport try: sqlalchemy_missing = False @@ -16,8 +18,6 @@ try: except ImportError: sqlalchemy_missing = True -import pytest - @pytest.mark.skipif(sqlalchemy_missing, reason='needs sqlalchemy') def test_build(request, rootdir, sphinx_test_tempdir): |