This commit is contained in:
Kovid Goyal
2026-07-04 09:19:56 +05:30
parent a65b4c70a7
commit 89781759e4
2 changed files with 6 additions and 2 deletions

View File

@@ -17,7 +17,11 @@ from functools import lru_cache, partial
from typing import Any, Callable, Dict, Iterable, Iterator, List, Tuple
from docutils import nodes
from docutils.parsers.rst.roles import normalize_options
try:
from docutils.parsers.rst.roles import normalize_options
except ImportError:
from docutils.parsers.rst.roles import set_classes as normalize_options # type: ignore
from pygments.lexer import RegexLexer
from pygments.lexer import bygroups as untyped_bygroups
from pygments.token import Comment, Error, Keyword, Literal, Name, Number, String, Whitespace

View File

@@ -230,7 +230,7 @@ shell_name=$(command basename "$login_shell")
}
cp = subprocess.run(
['sh', '-c', script], env=env, stdin=subprocess.DEVNULL,
stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True)
capture_output=True, text=True)
self.assertEqual(cp.returncode, 0, cp.stderr + cp.stdout)
@retry_on_failure()