1 new commit in pytest: https://bitbucket.org/hpk42/pytest/commits/8d04808c1e92/ Changeset: 8d04808c1e92 User: hpk42 Date: 2014-04-02 09:51:24 Summary: add changelog entry for some PRs: improvements to pytest's own test-suite leakage detection, courtesy of PRs from Marc Abramowitz Affected #: 2 files
diff -r 61109199d97671367bf6498827b349afccb7a154 -r 8d04808c1e928179c11974741428a418a9378d37 CHANGELOG --- a/CHANGELOG +++ b/CHANGELOG @@ -32,6 +32,9 @@ against tests or setups changing FD1/FD2, also better integrated now with pytest.pdb() in single tests. +- improvements to pytest's own test-suite leakage detection, courtesy of PRs + from Marc Abramowitz + 2.5.2 ----------------------------------- diff -r 61109199d97671367bf6498827b349afccb7a154 -r 8d04808c1e928179c11974741428a418a9378d37 testing/conftest.py --- a/testing/conftest.py +++ b/testing/conftest.py @@ -57,7 +57,7 @@ open_files = [t for t in lines2 if t[0] in new_fds] if open_files: error = [] - error.append("***** %s FD leackage detected" % len(open_files)) + error.append("***** %s FD leakage detected" % len(open_files)) error.extend([str(f) for f in open_files]) error.append("*** Before:") error.extend([str(f) for f in config._openfiles]) 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