up version, commit 2.0.1 annoucnement as sent out
This commit is contained in:
parent
5a5a618dcb
commit
2bd0c98801
|
@ -40,7 +40,7 @@ clean:
|
||||||
-rm -rf $(BUILDDIR)/*
|
-rm -rf $(BUILDDIR)/*
|
||||||
|
|
||||||
install: clean html
|
install: clean html
|
||||||
rsync -avz _build/html/ code:www-pytest/
|
rsync -avz _build/html/ code:www-pytest/2.0.2dev
|
||||||
|
|
||||||
html:
|
html:
|
||||||
$(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html
|
$(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html
|
||||||
|
|
|
@ -1,19 +1,15 @@
|
||||||
py.test 2.0.1: bug fixes
|
py.test 2.0.1: bug fixes
|
||||||
===========================================================================
|
===========================================================================
|
||||||
|
|
||||||
Welcome to pytest-2.0.1, a maintenance and bug fix release. For detailed
|
Welcome to pytest-2.0.1, a maintenance and bug fix release of pytest,
|
||||||
changes see below. pytest is a mature testing tool for Python,
|
a mature testing tool for Python, supporting CPython 2.4-3.2, Jython
|
||||||
supporting CPython 2.4-3.2, Jython and latest PyPy interpreters. See
|
and latest PyPy interpreters. See extensive docs with tested examples here:
|
||||||
docs here implementation. See docs with examples here:
|
|
||||||
|
|
||||||
http://pytest.org/
|
http://pytest.org/
|
||||||
|
|
||||||
A note on packaging: pytest used to part of the "py" distribution up
|
If you want to install or upgrade pytest, just type one of::
|
||||||
until version py-1.3.4 but this has changed now: pytest-2.0.X only
|
|
||||||
contains py.test related code and is expected to be backward-compatible
|
|
||||||
to existing test code. If you want to install pytest, just type one of::
|
|
||||||
|
|
||||||
pip install -U pytest
|
pip install -U pytest # or
|
||||||
easy_install -U pytest
|
easy_install -U pytest
|
||||||
|
|
||||||
Many thanks to all issue reporters and people asking questions or
|
Many thanks to all issue reporters and people asking questions or
|
||||||
|
@ -23,7 +19,6 @@ for their great coding contributions and many others for feedback and help.
|
||||||
best,
|
best,
|
||||||
holger krekel
|
holger krekel
|
||||||
|
|
||||||
|
|
||||||
Changes between 2.0.0 and 2.0.1
|
Changes between 2.0.0 and 2.0.1
|
||||||
----------------------------------------------
|
----------------------------------------------
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
"""
|
"""
|
||||||
unit and functional testing with Python.
|
unit and functional testing with Python.
|
||||||
"""
|
"""
|
||||||
__version__ = '2.0.1'
|
__version__ = '2.0.2.dev0'
|
||||||
__all__ = ['main']
|
__all__ = ['main']
|
||||||
|
|
||||||
from _pytest.core import main, UsageError, _preloadplugins
|
from _pytest.core import main, UsageError, _preloadplugins
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -22,7 +22,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.0.1',
|
version='2.0.2.dev0',
|
||||||
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