diff options
author | hut <hut@lavabit.com> | 2010-04-29 16:14:50 +0200 |
---|---|---|
committer | hut <hut@lavabit.com> | 2010-04-29 19:23:37 +0200 |
commit | d76fd5b7666cd1e7b9ff4eb51a822e1ab41fac28 (patch) | |
tree | f6d53c1c9be06fb7320f43bed0ee4539aa74583f /test/__init__.py | |
parent | bb5bfad4426eac02d0d855dd7f6ccf8ed5cc84f9 (diff) | |
download | ranger-d76fd5b7666cd1e7b9ff4eb51a822e1ab41fac28.tar.gz |
Separated benchmark from testcase
Diffstat (limited to 'test/__init__.py')
-rw-r--r-- | test/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/__init__.py b/test/__init__.py index c2f9bde2..e5f8a300 100644 --- a/test/__init__.py +++ b/test/__init__.py @@ -17,7 +17,7 @@ import os, sys __all__ = [ x[0:x.index('.')] \ for x in os.listdir(os.path.dirname(__file__)) \ - if x.startswith('tc_') ] + if x.startswith('tc_') or x.startswith('bm_')] def init(): sys.path.append(os.path.abspath(os.path.join(sys.path[0], '..'))) |