Don't fail test suite because of missing latex packages.

This commit is contained in:
Georg Brandl 2008-11-23 21:58:30 +01:00
parent a2773de9e0
commit 6726192fb6

View File

@ -10,6 +10,7 @@
"""
import os
import sys
import difflib
import htmlentitydefs
from StringIO import StringIO
@ -129,6 +130,32 @@ def test_latex(app):
'\n'.join(difflib.ndiff(latex_warnings_exp.splitlines(),
latex_warnings.splitlines()))
# only run latex if all needed packages are there
def kpsetest(filename):
try:
p = Popen(['kpsewhich', filename], stdout=PIPE)
except OSError, err:
# no kpsewhich... either no tex distribution is installed or it is
# a "strange" one -- don't bother running latex
return None
else:
p.communicate()
if p.returncode != 0:
# not found
return False
# found
return True
if kpsetest('article.sty') is None:
print >>sys.stderr, 'info: not running latex, it doesn\'t seem to be installed'
return
for filename in ['fancyhdr.sty', 'fancybox.sty', 'titlesec.sty', 'amsmath.sty',
'framed.sty', 'color.sty', 'fancyvrb.sty', 'threeparttable.sty']:
if not kpsetest(filename):
print >>sys.stderr, 'info: not running latex, the %s package doesn\'t ' \
'seem to be installed' % filename
return
# now, try to run latex over it
cwd = os.getcwd()
os.chdir(app.outdir)