Hope this finally makes the CI pass.
def test_dot(self):
self.run_doxygen(wildcard='dot.xml')
- if LooseVersion(dot_version()) >= LooseVersion("2.44.0"):
+ # Used to be >= 2.44.0, but 2.42.2 appears to have the same output
+ if LooseVersion(dot_version()) >= LooseVersion("2.42.2"):
file = 'dot.html'
elif LooseVersion(dot_version()) > LooseVersion("2.40.0"):
file = 'dot-240.html'
def test(self):
self.run_doxygen(wildcard='indexpage.xml')
- if LooseVersion(dot_version()) >= LooseVersion("2.44.0"):
+ # Used to be >= 2.44.0, but 2.42.2 appears to have the same output
+ if LooseVersion(dot_version()) >= LooseVersion("2.42.2"):
file = 'index.html'
elif LooseVersion(dot_version()) > LooseVersion("2.40.0"):
file = 'index-240.html'
})
self.assertEqual(*self.actual_expected_contents('index.html'))
- # The output is different for every other Graphviz
- if LooseVersion(dot_version()) >= LooseVersion("2.44.0"):
+ # Used to be >= 2.44.0, but 2.42.2 appears to have the same output
+ if LooseVersion(dot_version()) >= LooseVersion("2.42.2"):
file = 'dot.html'
elif LooseVersion(dot_version()) > LooseVersion("2.40.0"):
file = 'dot-240.html'
'M_DOT_FONT': 'DejaVu Sans'
})
- if LooseVersion(dot_version()) >= LooseVersion("2.44.0"):
+ # Used to be >= 2.44.0, but 2.42.2 appears to have the same output
+ if LooseVersion(dot_version()) >= LooseVersion("2.42.2"):
file = 'page.html'
elif LooseVersion(dot_version()) > LooseVersion("2.40.0"):
file = 'page-240.html'