call site 0 for test.skip
apigen/testing/test_apigen_example.py - line 219
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
   def test_build_class_pages_nav_links(self):
       self.apb.build_class_pages(['main.SomeSubClass',
                                   'main.SomeClass'])
       self.apb.build_namespace_pages()
       # fake some stuff that would be built from other methods
       self.linker.replace_dirpath(self.base, False)
       clsfile = self.base.join('api/main.SomeClass.html')
       assert clsfile.check()
       html = clsfile.read()
       print html
       run_string_sequence_test(html, [
           'href="../style.css"',
           'href="../apigen_style.css"',
           'src="../api.js"',
           'href="index.html">pkg',
           'href="main.html">main',
           'href="main.SomeClass.html">SomeClass',
           'href="main.SomeSubClass.html">SomeSubClass',
       ])
       assert 'href="main.sub.func.html"' not in html
       assert 'href="_test' not in html
       assert 'href="main.sub.html">sub' in html
->     _checkhtml(html)
apigen/testing/test_apigen_example.py - line 88
81
82
83
84
85
86
87
88
89
   def _checkhtml(htmlstring):
       if isinstance(htmlstring, unicode):
           htmlstring = htmlstring.encode('UTF-8', 'replace')
       assert isinstance(htmlstring, str)
       if option.webcheck:
           webcheck.check_html(htmlstring)
       else:
->         py.test.skip("pass --webcheck to validate html produced in tests "
                        "(partial skip: the test has succeeded up until here)")