[pypy-commit] pypy pytest: move viewerplugin to rpython

RonnyPfannschmidt noreply at buildbot.pypy.org
Mon Jan 21 01:45:25 CET 2013


Author: Ronny Pfannschmidt <Ronny.Pfannschmidt at gmx.de>
Branch: pytest
Changeset: r60262:c162c8583faf
Date: 2013-01-21 01:44 +0100
http://bitbucket.org/pypy/pypy/changeset/c162c8583faf/

Log:	move viewerplugin to rpython

diff --git a/pytest.ini b/pytest.ini
--- a/pytest.ini
+++ b/pytest.ini
@@ -1,4 +1,4 @@
 [pytest]
 addopts =
     --assert=reinterp -rf
-    -p pypy.tool.pytest.viewerplugin
+    -p rpython.tool.pytest.viewerplugin
diff --git a/pypy/tool/pytest/viewerplugin.py b/rpython/tool/pytest/viewerplugin.py
rename from pypy/tool/pytest/viewerplugin.py
rename to rpython/tool/pytest/viewerplugin.py
diff --git a/pypy/tool/pytest/test/test_viewerplugin.py b/rpython/tool/test/test_viewerplugin.py
rename from pypy/tool/pytest/test/test_viewerplugin.py
rename to rpython/tool/test/test_viewerplugin.py
--- a/pypy/tool/pytest/test/test_viewerplugin.py
+++ b/rpython/tool/test/test_viewerplugin.py
@@ -1,10 +1,10 @@
 import sys
 import pytest
-from pypy.tool.pytest import viewerplugin
+from rpython.tool.pytest import viewerplugin
 
-class mock:
+class mock(object):
     view = False
-    
+
     @staticmethod
     def execute():
         pass


More information about the pypy-commit mailing list