summaryrefslogtreecommitdiff
path: root/tests/run.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run.py')
-rw-r--r--tests/run.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/run.py b/tests/run.py
index b0244d60..534a22e5 100644
--- a/tests/run.py
+++ b/tests/run.py
@@ -14,7 +14,6 @@
import sys, os, new
import unittest
-import __builtin__
from os.path import dirname, basename, join, abspath
@@ -27,9 +26,6 @@ except ImportError:
testdir = abspath(dirname(__file__))
-# useful for all tests
-__builtin__.testdir = testdir
-
failed = []
total_test_count = 0
error_test_count = 0
@@ -92,7 +88,6 @@ def run_tests(with_coverage=False):
for testfile in files:
globs = {}
try:
- __builtin__.testfile = testfile
execfile(join(testdir, testfile), globs)
except Exception, exc:
raise