# HG changeset patch -- Bitbucket.org # Project pytest-codecheckers # URL http://bitbucket.org/RonnyPfannschmidt/pytest-codecheckers/overview # User Ronny Pfannschmidt <ronny.pfannschm...@gmx.de> # Date 1287190752 -7200 # Node ID 722d41f664715a4631025fec3406a244ce8bfde6 # Parent e405fd961f231dfc10d029d49ac531c48e1083ac update to pytest
--- a/setup.py +++ b/setup.py @@ -36,7 +36,7 @@ setup( ], }, install_requires=[ - 'py>=1.2.0', + 'pytest', 'pyflakes>=0.4', 'pep8', ], --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [testenv] deps= - py + pytest pyflakes pep8 commands = --- a/tests/test_pyflakes.py +++ b/tests/test_pyflakes.py @@ -21,5 +21,5 @@ def test_reportinfo_verbose(testdir): f.write(f.read() + '\n') out = testdir.runpytest('-v', '--codecheck=pyflakes') out.stdout.fnmatch_lines([ - '*test_reportinfo_verbose.py: codecheck pyflakes PASS', + '*test_reportinfo_verbose.py: codecheck pyflakes PASSED', ]) _______________________________________________ py-svn mailing list py-svn@codespeak.net http://codespeak.net/mailman/listinfo/py-svn