コード例 #1
0
ファイル: test_htmlrest.py プロジェクト: neurobcn/plexnet
def setup_module(mod):
    py.test.importorskip("docutils")
    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")
    mod.datadir = getdata()
コード例 #2
0
ファイル: test_htmlrest.py プロジェクト: paskma/py
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")
    try:
        import docutils
    except ImportError:
        py.test.skip("docutils not present")

    mod.datadir = getdata()
コード例 #3
0
ファイル: test_convert.py プロジェクト: mickg10/DARLAB
def setup_module(mod):
    required = 'gs', 'dot', 'latex', 'epstopdf', 
    for exe in required:
        if not py.path.local.sysfind(exe):
            py.test.skip("%r not found, required: %r" %(exe, required))
    mod.datadir = getdata()
コード例 #4
0
ファイル: test_directive.py プロジェクト: paskma/py
def setup_module(mod):
    mod.datadir = getdata()
    mod.testdir = py.test.ensuretemp("rest")
コード例 #5
0
ファイル: test_convert.py プロジェクト: neurobcn/plexnet
def setup_module(mod):
    required = 'gs', 'dot', 'latex', 'epstopdf', 
    for exe in required:
        if not py.path.local.sysfind(exe):
            py.test.skip("%r not found, required: %r" %(exe, required))
    mod.datadir = getdata()
コード例 #6
0
ファイル: test_directive.py プロジェクト: neurobcn/plexnet
def setup_module(mod):
    mod.datadir = getdata()
    mod.testdir = py.test.ensuretemp("rest")