add benjamin's post to docs, up version, open changelog
This commit is contained in:
parent
a59c2c9e17
commit
709da3fe84
|
@ -1,3 +1,8 @@
|
||||||
|
Changes between 2.1.0 and 2.1.1.DEV
|
||||||
|
----------------------------------------------
|
||||||
|
|
||||||
|
- XXX
|
||||||
|
|
||||||
Changes between 2.0.3 and 2.1.0.DEV
|
Changes between 2.0.3 and 2.1.0.DEV
|
||||||
----------------------------------------------
|
----------------------------------------------
|
||||||
|
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
#
|
#
|
||||||
__version__ = '2.1.0'
|
__version__ = '2.1.1.dev1'
|
||||||
|
|
|
@ -240,6 +240,8 @@ easy to rewrite the assertion and avoid any trouble::
|
||||||
|
|
||||||
All assert introspection can be turned off by passing ``--assert=plain``.
|
All assert introspection can be turned off by passing ``--assert=plain``.
|
||||||
|
|
||||||
|
For further information, Benjamin Peterson wrote up `Behind the scenes of py.test's new assertion rewriting <http://pybites.blogspot.com/2011/07/behind-scenes-of-pytests-new-assertion.html>`_.
|
||||||
|
|
||||||
.. versionadded:: 2.1
|
.. versionadded:: 2.1
|
||||||
Add assert rewriting as an alternate introspection technique.
|
Add assert rewriting as an alternate introspection technique.
|
||||||
|
|
||||||
|
|
|
@ -28,6 +28,11 @@ test parametrization:
|
||||||
- `parametrizing tests, generalized`_ (blog post)
|
- `parametrizing tests, generalized`_ (blog post)
|
||||||
- `putting test-hooks into local or global plugins`_ (blog post)
|
- `putting test-hooks into local or global plugins`_ (blog post)
|
||||||
|
|
||||||
|
assertion introspection
|
||||||
|
|
||||||
|
- `(07/2011) Behind the scenes of py.test's new assertion rewriting
|
||||||
|
<http://pybites.blogspot.com/2011/07/behind-scenes-of-pytests-new-assertion.html>`_
|
||||||
|
|
||||||
distributed testing:
|
distributed testing:
|
||||||
|
|
||||||
- `simultaneously test your code on all platforms`_ (blog entry)
|
- `simultaneously test your code on all platforms`_ (blog entry)
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -24,7 +24,7 @@ def main():
|
||||||
name='pytest',
|
name='pytest',
|
||||||
description='py.test: simple powerful testing with Python',
|
description='py.test: simple powerful testing with Python',
|
||||||
long_description = long_description,
|
long_description = long_description,
|
||||||
version='2.1.0',
|
version='2.1.1.dev1',
|
||||||
url='http://pytest.org',
|
url='http://pytest.org',
|
||||||
license='MIT license',
|
license='MIT license',
|
||||||
platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],
|
platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],
|
||||||
|
|
Loading…
Reference in New Issue