diff options
author | Robert Cohn <robert.s.cohn@intel.com> | 2020-10-01 11:12:39 -0400 |
---|---|---|
committer | Robert Cohn <robert.s.cohn@intel.com> | 2020-10-01 11:12:39 -0400 |
commit | 3d81abef9cc8c765d3cf5bc419b21917243cf56d (patch) | |
tree | ba42a81b88f1f326d15012532d7f567af5fcb29b | |
parent | c08214fe92c8ab61219ce46af0ff634a57b8431c (diff) | |
download | sphinx-git-3d81abef9cc8c765d3cf5bc419b21917243cf56d.tar.gz |
respond to review comments
-rw-r--r-- | tests/test_build_html.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/test_build_html.py b/tests/test_build_html.py index acb3ca764..8cd541481 100644 --- a/tests/test_build_html.py +++ b/tests/test_build_html.py @@ -421,12 +421,11 @@ def test_html5_output(app, cached_etree_parse, fname, expect): check_xpath(cached_etree_parse(app.outdir / fname), fname, *expect) -@pytest.mark.skipif(docutils.__version_info__ < (0, 13), - reason='docutils-0.13 or above is required') @pytest.mark.sphinx('html', parallel=2) def test_html_parallel(app): app.build() + @pytest.mark.skipif(docutils.__version_info__ < (0, 13), reason='docutils-0.13 or above is required') @pytest.mark.sphinx('html') |