diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2016-07-14 01:35:54 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2016-07-14 01:36:40 +0900 |
commit | 3fb439c476fa2013b8c7e3b95066b8e075b52c9b (patch) | |
tree | 37cb435cdee4bd281c8c34f2919bc471b349d367 /tests/test_ext_math.py | |
parent | edacbd56d1066bda08fa776de35068a663c1ff14 (diff) | |
download | sphinx-git-3fb439c476fa2013b8c7e3b95066b8e075b52c9b.tar.gz |
Optimize tests: test_imgmath_png, test_imgmath_svg
Diffstat (limited to 'tests/test_ext_math.py')
-rw-r--r-- | tests/test_ext_math.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_ext_math.py b/tests/test_ext_math.py index 4b168b40c..517ba30c8 100644 --- a/tests/test_ext_math.py +++ b/tests/test_ext_math.py @@ -14,7 +14,7 @@ import re from util import with_app, SkipTest -@with_app('html', testroot='ext-math', +@with_app('html', testroot='ext-math-simple', confoverrides = {'extensions': ['sphinx.ext.imgmath']}) def test_imgmath_png(app, status, warning): app.builder.build_all() @@ -29,7 +29,7 @@ def test_imgmath_png(app, status, warning): assert re.search(html, content, re.S) -@with_app('html', testroot='ext-math', +@with_app('html', testroot='ext-math-simple', confoverrides={'extensions': ['sphinx.ext.imgmath'], 'imgmath_image_format': 'svg'}) def test_imgmath_svg(app, status, warning): |