1 new commit in pytest: https://bitbucket.org/hpk42/pytest/commits/808a74ee97be/ Changeset: 808a74ee97be User: hpk42 Date: 2014-07-17 16:49:10 Summary: mention py34 compatibility Affected #: 2 files
diff -r 1e466ad27c019d969910e39e7c256710c5fbbbed -r 808a74ee97be149c9db577091fb5a7c09f069805 README.rst --- a/README.rst +++ b/README.rst @@ -19,8 +19,8 @@ - multi-paradigm support: you can use ``pytest`` to run test suites based on `unittest <http://pytest.org/latest/unittest.html>`_ (or trial), `nose <http://pytest.org/latest/nose.html>`_ -- single-source compatibility to Python2.5 all the way up to Python3.3, - PyPy-1.9 and Jython-2.5.1. +- single-source compatibility to Python2.5 all the way up to Python3.4, + PyPy-2.3 and Jython-2.5.1. - many `external plugins <http://pytest.org/latest/plugins.html#installing-external-plugins-searching>`_. diff -r 1e466ad27c019d969910e39e7c256710c5fbbbed -r 808a74ee97be149c9db577091fb5a7c09f069805 doc/en/getting-started.txt --- a/doc/en/getting-started.txt +++ b/doc/en/getting-started.txt @@ -1,7 +1,7 @@ Installation and Getting Started =================================== -**Pythons**: Python 2.6-3.3, Jython, PyPy +**Pythons**: Python 2.6-3.4, Jython, PyPy-2.3 **Platforms**: Unix/Posix and Windows @@ -51,17 +51,17 @@ =========================== test session starts ============================ platform linux2 -- Python 2.7.3 -- py-1.4.20 -- pytest-2.5.2 collected 1 items - + test_sample.py F - + ================================= FAILURES ================================= _______________________________ test_answer ________________________________ - + def test_answer(): > assert func(3) == 5 E assert 4 == 5 E + where 4 = func(3) - + test_sample.py:5: AssertionError ========================= 1 failed in 0.01 seconds ========================= @@ -126,14 +126,14 @@ .F ================================= FAILURES ================================= ____________________________ TestClass.test_two ____________________________ - + self = <test_class.TestClass instance at 0x255a0e0> - + def test_two(self): x = "hello" > assert hasattr(x, 'check') E assert hasattr('hello', 'check') - + test_class.py:8: AssertionError 1 failed, 1 passed in 0.01 seconds @@ -162,14 +162,14 @@ F ================================= FAILURES ================================= _____________________________ test_needsfiles ______________________________ - + tmpdir = local('/tmp/pytest-1008/test_needsfiles0') - + def test_needsfiles(tmpdir): print tmpdir > assert 0 E assert 0 - + test_tmpdir.py:3: AssertionError ----------------------------- Captured stdout ------------------------------ /tmp/pytest-1008/test_needsfiles0 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