コード例 #1
0
ファイル: conftest.py プロジェクト: alkorzt/pypy
 def collect(self):
     try:
         check_sdl_installation()
     except SDLNotInstalled, e:
         py.test.skip("SDL not installed(?): %s" % (e,))
コード例 #2
0
ファイル: conftest.py プロジェクト: griels/pypy-sc
 def run(self):
     try:
         check_sdl_installation()
     except SDLNotInstalled, e:
         py.test.skip("SDL not installed(?): %s" % (e, ))
コード例 #3
0
ファイル: conftest.py プロジェクト: purepython/pypy
def pytest_ignore_collect(path):
    try:
        check_sdl_installation()
    except SDLNotInstalled, e:
        return True