Merge branch '3.x'

This commit is contained in:
Takeshi KOMIYA
2020-07-24 23:49:45 +09:00
76 changed files with 742 additions and 188 deletions

View File

@@ -387,6 +387,6 @@ def test_run_epubcheck(app):
subprocess.run(['java', '-jar', epubcheck, app.outdir / 'SphinxTests.epub'],
stdout=PIPE, stderr=PIPE, check=True)
except CalledProcessError as exc:
print(exc.stdout)
print(exc.stderr)
print(exc.stdout.decode('utf-8'))
print(exc.stderr.decode('utf-8'))
assert False, 'epubcheck exited with return code %s' % exc.returncode