Author: Alexander Hesse <[email protected]>
Branch: split-rpython
Changeset: r60120:045d0377e690
Date: 2013-01-17 05:17 +0100
http://bitbucket.org/pypy/pypy/changeset/045d0377e690/

Log:    Added Leakfinder to pypy.conftest too

diff --git a/pypy/conftest.py b/pypy/conftest.py
--- a/pypy/conftest.py
+++ b/pypy/conftest.py
@@ -25,6 +25,10 @@
 def pytest_report_header():
     return "pytest-%s from %s" %(pytest.__version__, pytest.__file__)
 
+def pytest_addhooks(pluginmanager):
+    from rpython.conftest import LeakFinder
+    pluginmanager.register(LeakFinder())
+
 def pytest_configure(config):
     global option
     option = config.option
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to