Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit cb0d0e5

Browse files
authored
Merge pull request #7256 from tacaswell/ci_skip_latex_test
CI: skip failing test on appveyor
2 parents 0f49717 + 144b05d commit cb0d0e5

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

lib/matplotlib/tests/test_backend_pgf.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,11 @@ def test_xelatex():
9393
@cleanup(style='classic')
9494
@switch_backend('pgf')
9595
def test_pdflatex():
96+
import os
97+
if os.environ.get('APPVEYOR', False):
98+
from matplotlib.testing import xfail
99+
xfail("pdflatex test does not work on appveyor due "
100+
"to missing latex fonts")
96101
if not check_for('pdflatex'):
97102
raise SkipTest('pdflatex + pgf is required')
98103

0 commit comments

Comments
 (0)