call site 16 for test.skip
misc/testing/test_initpkg.py - line 94
92
93
94
95
96
97
98
99
100
   def test_getrev():
       if not py.path.local(py.__file__).dirpath('.svn').check():
->         py.test.skip("py package is not a svn checkout") 
       d = py.__package__.getrev()
       svnversion = py.path.local.sysfind('svnversion')
       if svnversion is None:
           py.test.skip("cannot test svnversion, 'svnversion' binary not found")
       v = svnversion.sysexec(py.path.local(py.__file__).dirpath())
       assert v.startswith(str(d))