Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ca39f7 commit a950006Copy full SHA for a950006
lib/matplotlib/tests/test_backend_svg.py
@@ -10,6 +10,11 @@
10
import matplotlib.pyplot as plt
11
from matplotlib.testing.decorators import cleanup
12
from matplotlib.testing.decorators import image_comparison
13
+import matplotlib
14
+
15
+needs_tex = knownfailureif(
16
+ not matplotlib.checkdep_tex(),
17
+ "This test needs a TeX installation")
18
19
20
@cleanup
@@ -173,6 +178,7 @@ def test_determinism_notex():
173
178
174
179
175
180
181
+@needs_tex
176
182
def test_determinism_tex():
177
183
# unique filename to allow for parallel testing
184
_test_determinism('determinism_tex.svg', usetex=True)
0 commit comments