1 new commit in pytest: https://bitbucket.org/hpk42/pytest/commits/0761626cf9a5/ Changeset: 0761626cf9a5 User: hpk42 Date: 2014-01-22 17:48:56 Summary: fix issue413: exceptions with unicode attributes are now printed correctly also on python2 and with pytest-xdist runs. (the fix requires py-1.4.20) Affected #: 2 files
diff -r 97806c888bae964d7cc0549eb575b12bffce89f7 -r 0761626cf9a54ad7b68e802808d77448c9919bc6 CHANGELOG --- a/CHANGELOG +++ b/CHANGELOG @@ -11,6 +11,9 @@ - fix issue425: mention at end of "py.test -h" that --markers and --fixtures work according to specified test path (or current dir) +- fix issue413: exceptions with unicode attributes are now printed + correctly also on python2 and with pytest-xdist runs. (the fix + requires py-1.4.20) 2.5.1 ----------------------------------- diff -r 97806c888bae964d7cc0549eb575b12bffce89f7 -r 0761626cf9a54ad7b68e802808d77448c9919bc6 setup.py --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ long_description = open("README.rst").read() def main(): - install_requires = ["py>=1.4.19"] + install_requires = ["py>=1.4.20.dev2"] if sys.version_info < (2,7): install_requires.append("argparse") if sys.platform == "win32": Repository URL: https://bitbucket.org/hpk42/pytest/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. _______________________________________________ pytest-commit mailing list pytest-commit@python.org https://mail.python.org/mailman/listinfo/pytest-commit