call site 4 for magic.autopath
misc/testing/test_initpkg.py - line 83
81
82
83
   def check_import(modpath): 
       print "checking import", modpath
->     assert __import__(modpath) 
rest/testing/test_convert.py - line 4
1
2
3
4
5
6
7
8
9
10
   import py
   from py.__.rest.convert import convert_dot, latexformula2png
   
-> datadir = py.magic.autopath().dirpath().join("data")
   
   def setup_module(mod):
       if not py.path.local.sysfind("gs") or \
              not py.path.local.sysfind("dot") or \
              not py.path.local.sysfind("latex"):
           py.test.skip("ghostscript, graphviz and latex needed")