[svn r58111] make the tests runnable also under pypy
--HG-- branch : trunk
This commit is contained in:
parent
2a706fc8ae
commit
89814706bc
|
@ -1,7 +1,11 @@
|
|||
import py
|
||||
|
||||
from filelog import session
|
||||
|
||||
try:
|
||||
from filelog import session
|
||||
except ImportError:
|
||||
# convenience, make these tests runnable where fielog lives under pypy
|
||||
from pypy.tool.pytest.filelog import session
|
||||
|
||||
import os, StringIO
|
||||
|
||||
from py.__.test.collect import Node, Item, FSCollector
|
||||
|
|
Loading…
Reference in New Issue