diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2018-09-08 11:38:39 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2018-09-22 16:31:07 +0900 |
commit | b18fe13f550e58cd9b65246ceda8618a760b84c8 (patch) | |
tree | 2a922a706543c092f31e6cc3019edc1a15c92137 /tests/test_docutilsconf.py | |
parent | 271ea125f2e5c3c21b39e5fa6edfc4b6dbcf0d26 (diff) | |
download | sphinx-git-b18fe13f550e58cd9b65246ceda8618a760b84c8.tar.gz |
Drop branches for sys.version_info < (3, 4)
Diffstat (limited to 'tests/test_docutilsconf.py')
-rw-r--r-- | tests/test_docutilsconf.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/test_docutilsconf.py b/tests/test_docutilsconf.py index 989edc6a8..32a2aad29 100644 --- a/tests/test_docutilsconf.py +++ b/tests/test_docutilsconf.py @@ -10,7 +10,6 @@ """ import re -import sys import pytest @@ -82,9 +81,6 @@ def test_texinfo(app, status, warning): @pytest.mark.sphinx('html', testroot='docutilsconf', docutilsconf='[general]\nsource_link=true\n') -@pytest.mark.skip(sys.platform == "win32" and - not (sys.version_info.major >= 3 and sys.version_info.minor >= 2), - reason="Python < 3.2 on Win32 doesn't handle non-ASCII paths right") def test_docutils_source_link_with_nonascii_file(app, status, warning): srcdir = path(app.srcdir) mb_name = u'\u65e5\u672c\u8a9e' |