another whitespace-correction commit

--HG--
branch : trunk
This commit is contained in:
holger krekel 2010-07-30 15:05:24 +02:00
parent efeae72509
commit 6aab9bcfb9
3 changed files with 225 additions and 225 deletions

444
CHANGELOG
View File

@ -1,27 +1,27 @@
Changes between 1.3.2 and 1.3.3a1 Changes between 1.3.2 and 1.3.3a1
================================================== ==================================================
- fix issue113: assertion representation problem with triple-quoted strings - fix issue113: assertion representation problem with triple-quoted strings
(and possibly other cases) (and possibly other cases)
- make conftest loading detect that a conftest file with the same - make conftest loading detect that a conftest file with the same
content was already loaded, avoids surprises in nested directory structures content was already loaded, avoids surprises in nested directory structures
that can be produced e.g. by Hudson. It alleviates the need to use that can be produced e.g. by Hudson. It alleviates the need to use
--confcutdir at all. --confcutdir at all.
- fix terminal coloring for win32 - fix terminal coloring for win32
(thanks Michael Foord for reporting) (thanks Michael Foord for reporting)
- fix weirdness: make terminal width detection work on stdout instead of stdin - fix weirdness: make terminal width detection work on stdout instead of stdin
(thanks Armin Ronacher for reporting) (thanks Armin Ronacher for reporting)
- remove trailing whitespace in all py/text files - remove trailing whitespace in all py/text files
Changes between 1.3.1 and 1.3.2 Changes between 1.3.1 and 1.3.2
================================================== ==================================================
New features New features
++++++++++++++++++ ++++++++++++++++++
- fix issue103: introduce py.test.raises as context manager, examples:: - fix issue103: introduce py.test.raises as context manager, examples::
with py.test.raises(ZeroDivisionError): with py.test.raises(ZeroDivisionError):
x = 0 x = 0
1 / x 1 / x
@ -30,10 +30,10 @@ New features
# you may do extra checks on excinfo.value|type|traceback here # you may do extra checks on excinfo.value|type|traceback here
(thanks Ronny Pfannschmidt) (thanks Ronny Pfannschmidt)
- Funcarg factories can now dynamically apply a marker to a - Funcarg factories can now dynamically apply a marker to a
test invocation. This is for example useful if a factory test invocation. This is for example useful if a factory
provides parameters to a test which are expected-to-fail:: provides parameters to a test which are expected-to-fail::
def pytest_funcarg__arg(request): def pytest_funcarg__arg(request):
@ -43,75 +43,75 @@ New features
def test_function(arg): def test_function(arg):
... ...
- improved error reporting on collection and import errors. This makes - improved error reporting on collection and import errors. This makes
use of a more general mechanism, namely that for custom test item/collect use of a more general mechanism, namely that for custom test item/collect
nodes ``node.repr_failure(excinfo)`` is now uniformly called so that you can nodes ``node.repr_failure(excinfo)`` is now uniformly called so that you can
override it to return a string error representation of your choice override it to return a string error representation of your choice
which is going to be reported as a (red) string. which is going to be reported as a (red) string.
- introduce '--junitprefix=STR' option to prepend a prefix - introduce '--junitprefix=STR' option to prepend a prefix
to all reports in the junitxml file. to all reports in the junitxml file.
Bug fixes / Maintenance Bug fixes / Maintenance
++++++++++++++++++++++++++ ++++++++++++++++++++++++++
- make tests and the ``pytest_recwarn`` plugin in particular fully compatible - make tests and the ``pytest_recwarn`` plugin in particular fully compatible
to Python2.7 (if you use the ``recwarn`` funcarg warnings will be enabled so that to Python2.7 (if you use the ``recwarn`` funcarg warnings will be enabled so that
you can properly check for their existence in a cross-python manner). you can properly check for their existence in a cross-python manner).
- refine --pdb: ignore xfailed tests, unify its TB-reporting and - refine --pdb: ignore xfailed tests, unify its TB-reporting and
don't display failures again at the end. don't display failures again at the end.
- fix assertion interpretation with the ** operator (thanks Benjamin Peterson) - fix assertion interpretation with the ** operator (thanks Benjamin Peterson)
- fix issue105 assignment on the same line as a failing assertion (thanks Benjamin Peterson) - fix issue105 assignment on the same line as a failing assertion (thanks Benjamin Peterson)
- fix issue104 proper escaping for test names in junitxml plugin (thanks anonymous) - fix issue104 proper escaping for test names in junitxml plugin (thanks anonymous)
- fix issue57 -f|--looponfail to work with xpassing tests (thanks Ronny) - fix issue57 -f|--looponfail to work with xpassing tests (thanks Ronny)
- fix issue92 collectonly reporter and --pastebin (thanks Benjamin Peterson) - fix issue92 collectonly reporter and --pastebin (thanks Benjamin Peterson)
- fix py.code.compile(source) to generate unique filenames - fix py.code.compile(source) to generate unique filenames
- fix assertion re-interp problems on PyPy, by defering code - fix assertion re-interp problems on PyPy, by defering code
compilation to the (overridable) Frame.eval class. (thanks Amaury Forgeot) compilation to the (overridable) Frame.eval class. (thanks Amaury Forgeot)
- fix py.path.local.pyimport() to work with directories - fix py.path.local.pyimport() to work with directories
- streamline py.path.local.mkdtemp implementation and usage - streamline py.path.local.mkdtemp implementation and usage
- don't print empty lines when showing junitxml-filename - don't print empty lines when showing junitxml-filename
- add optional boolean ignore_errors parameter to py.path.local.remove - add optional boolean ignore_errors parameter to py.path.local.remove
- fix terminal writing on win32/python2.4 - fix terminal writing on win32/python2.4
- py.process.cmdexec() now tries harder to return properly encoded unicode objects - py.process.cmdexec() now tries harder to return properly encoded unicode objects
on all python versions on all python versions
- install plain py.test/py.which scripts also for Jython, this helps to - install plain py.test/py.which scripts also for Jython, this helps to
get canonical script paths in virtualenv situations get canonical script paths in virtualenv situations
- make path.bestrelpath(path) return ".", note that when calling - make path.bestrelpath(path) return ".", note that when calling
X.bestrelpath the assumption is that X is a directory. X.bestrelpath the assumption is that X is a directory.
- make initial conftest discovery ignore "--" prefixed arguments - make initial conftest discovery ignore "--" prefixed arguments
- fix resultlog plugin when used in an multicpu/multihost xdist situation - fix resultlog plugin when used in an multicpu/multihost xdist situation
(thanks Jakub Gustak) (thanks Jakub Gustak)
- perform distributed testing related reporting in the xdist-plugin - perform distributed testing related reporting in the xdist-plugin
rather than having dist-related code in the generic py.test rather than having dist-related code in the generic py.test
distribution distribution
- fix homedir detection on Windows - fix homedir detection on Windows
- ship distribute_setup.py version 0.6.13 - ship distribute_setup.py version 0.6.13
Changes between 1.3.0 and 1.3.1 Changes between 1.3.0 and 1.3.1
================================================== ==================================================
New features New features
++++++++++++++++++ ++++++++++++++++++
- issue91: introduce new py.test.xfail(reason) helper - issue91: introduce new py.test.xfail(reason) helper
to imperatively mark a test as expected to fail. Can to imperatively mark a test as expected to fail. Can
be used from within setup and test functions. This is be used from within setup and test functions. This is
useful especially for parametrized tests when certain useful especially for parametrized tests when certain
configurations are expected-to-fail. In this case the configurations are expected-to-fail. In this case the
declarative approach with the @py.test.mark.xfail cannot declarative approach with the @py.test.mark.xfail cannot
be used as it would mark all configurations as xfail. be used as it would mark all configurations as xfail.
- issue102: introduce new --maxfail=NUM option to stop - issue102: introduce new --maxfail=NUM option to stop
test runs after NUM failures. This is a generalization test runs after NUM failures. This is a generalization
of the '-x' or '--exitfirst' option which is now equivalent of the '-x' or '--exitfirst' option which is now equivalent
to '--maxfail=1'. Both '-x' and '--maxfail' will to '--maxfail=1'. Both '-x' and '--maxfail' will
now also print a line near the end indicating the Interruption. now also print a line near the end indicating the Interruption.
- issue89: allow py.test.mark decorators to be used on classes - issue89: allow py.test.mark decorators to be used on classes
(class decorators were introduced with python2.6) and (class decorators were introduced with python2.6) and
also allow to have multiple markers applied at class/module level also allow to have multiple markers applied at class/module level
by specifying a list. by specifying a list.
- improve and refine letter reporting in the progress bar: - improve and refine letter reporting in the progress bar:
. pass . pass
@ -121,19 +121,19 @@ New features
X xpassed test (test that was expected to fail but passed) X xpassed test (test that was expected to fail but passed)
You can use any combination of 'fsxX' with the '-r' extended You can use any combination of 'fsxX' with the '-r' extended
reporting option. The xfail/xpass results will show up as reporting option. The xfail/xpass results will show up as
skipped tests in the junitxml output - which also fixes skipped tests in the junitxml output - which also fixes
issue99. issue99.
- make py.test.cmdline.main() return the exitstatus instead of raising - make py.test.cmdline.main() return the exitstatus instead of raising
SystemExit and also allow it to be called multiple times. This of SystemExit and also allow it to be called multiple times. This of
course requires that your application and tests are properly teared course requires that your application and tests are properly teared
down and don't have global state. down and don't have global state.
Fixes / Maintenance Fixes / Maintenance
++++++++++++++++++++++ ++++++++++++++++++++++
- improved traceback presentation: - improved traceback presentation:
- improved and unified reporting for "--tb=short" option - improved and unified reporting for "--tb=short" option
- Errors during test module imports are much shorter, (using --tb=short style) - Errors during test module imports are much shorter, (using --tb=short style)
- raises shows shorter more relevant tracebacks - raises shows shorter more relevant tracebacks
@ -141,20 +141,20 @@ Fixes / Maintenance
- improve support for raises and other dynamically compiled code by - improve support for raises and other dynamically compiled code by
manipulating python's linecache.cache instead of the previous manipulating python's linecache.cache instead of the previous
rather hacky way of creating custom code objects. This makes rather hacky way of creating custom code objects. This makes
it seemlessly work on Jython and PyPy where it previously didn't. it seemlessly work on Jython and PyPy where it previously didn't.
- fix issue96: make capturing more resilient against Control-C - fix issue96: make capturing more resilient against Control-C
interruptions (involved somewhat substantial refactoring interruptions (involved somewhat substantial refactoring
to the underlying capturing functionality to avoid race to the underlying capturing functionality to avoid race
conditions). conditions).
- fix chaining of conditional skipif/xfail decorators - so it works now - fix chaining of conditional skipif/xfail decorators - so it works now
as expected to use multiple @py.test.mark.skipif(condition) decorators, as expected to use multiple @py.test.mark.skipif(condition) decorators,
including specific reporting which of the conditions lead to skipping. including specific reporting which of the conditions lead to skipping.
- fix issue95: late-import zlib so that it's not required - fix issue95: late-import zlib so that it's not required
for general py.test startup. for general py.test startup.
- fix issue94: make reporting more robust against bogus source code - fix issue94: make reporting more robust against bogus source code
(and internally be more careful when presenting unexpected byte sequences) (and internally be more careful when presenting unexpected byte sequences)
@ -166,40 +166,40 @@ Changes between 1.2.1 and 1.3.0
- deprecate --report option in favour of a new shorter and easier to - deprecate --report option in favour of a new shorter and easier to
remember -r option: it takes a string argument consisting of any remember -r option: it takes a string argument consisting of any
combination of 'xfsX' characters. They relate to the single chars combination of 'xfsX' characters. They relate to the single chars
you see during the dotted progress printing and will print an extra line you see during the dotted progress printing and will print an extra line
per test at the end of the test run. This extra line indicates the exact per test at the end of the test run. This extra line indicates the exact
position or test ID that you directly paste to the py.test cmdline in order position or test ID that you directly paste to the py.test cmdline in order
to re-run a particular test. to re-run a particular test.
- allow external plugins to register new hooks via the new - allow external plugins to register new hooks via the new
pytest_addhooks(pluginmanager) hook. The new release of pytest_addhooks(pluginmanager) hook. The new release of
the pytest-xdist plugin for distributed and looponfailing the pytest-xdist plugin for distributed and looponfailing
testing requires this feature. testing requires this feature.
- add a new pytest_ignore_collect(path, config) hook to allow projects and - add a new pytest_ignore_collect(path, config) hook to allow projects and
plugins to define exclusion behaviour for their directory structure - plugins to define exclusion behaviour for their directory structure -
for example you may define in a conftest.py this method:: for example you may define in a conftest.py this method::
def pytest_ignore_collect(path): def pytest_ignore_collect(path):
return path.check(link=1) return path.check(link=1)
to prevent even a collection try of any tests in symlinked dirs. to prevent even a collection try of any tests in symlinked dirs.
- new pytest_pycollect_makemodule(path, parent) hook for - new pytest_pycollect_makemodule(path, parent) hook for
allowing customization of the Module collection object for a allowing customization of the Module collection object for a
matching test module. matching test module.
- extend and refine xfail mechanism: - extend and refine xfail mechanism:
``@py.test.mark.xfail(run=False)`` do not run the decorated test ``@py.test.mark.xfail(run=False)`` do not run the decorated test
``@py.test.mark.xfail(reason="...")`` prints the reason string in xfail summaries ``@py.test.mark.xfail(reason="...")`` prints the reason string in xfail summaries
specifiying ``--runxfail`` on command line virtually ignores xfail markers specifiying ``--runxfail`` on command line virtually ignores xfail markers
- expose (previously internal) commonly useful methods: - expose (previously internal) commonly useful methods:
py.io.get_terminal_with() -> return terminal width py.io.get_terminal_with() -> return terminal width
py.io.ansi_print(...) -> print colored/bold text on linux/win32 py.io.ansi_print(...) -> print colored/bold text on linux/win32
py.io.saferepr(obj) -> return limited representation string py.io.saferepr(obj) -> return limited representation string
- expose test outcome related exceptions as py.test.skip.Exception, - expose test outcome related exceptions as py.test.skip.Exception,
py.test.raises.Exception etc., useful mostly for plugins py.test.raises.Exception etc., useful mostly for plugins
doing special outcome interpretation/tweaking doing special outcome interpretation/tweaking
@ -207,22 +207,22 @@ Changes between 1.2.1 and 1.3.0
- fix/refine python3 compatibility (thanks Benjamin Peterson) - fix/refine python3 compatibility (thanks Benjamin Peterson)
- fixes for making the jython/win32 combination work, note however: - fixes for making the jython/win32 combination work, note however:
jython2.5.1/win32 does not provide a command line launcher, see jython2.5.1/win32 does not provide a command line launcher, see
http://bugs.jython.org/issue1491 . See pylib install documentation http://bugs.jython.org/issue1491 . See pylib install documentation
for how to work around. for how to work around.
- fixes for handling of unicode exception values and unprintable objects - fixes for handling of unicode exception values and unprintable objects
- (issue87) fix unboundlocal error in assertionold code - (issue87) fix unboundlocal error in assertionold code
- (issue86) improve documentation for looponfailing - (issue86) improve documentation for looponfailing
- refine IO capturing: stdin-redirect pseudo-file now has a NOP close() method - refine IO capturing: stdin-redirect pseudo-file now has a NOP close() method
- ship distribute_setup.py version 0.6.10 - ship distribute_setup.py version 0.6.10
- added links to the new capturelog and coverage plugins - added links to the new capturelog and coverage plugins
Changes between 1.2.1 and 1.2.0 Changes between 1.2.1 and 1.2.0
@ -233,79 +233,79 @@ Changes between 1.2.1 and 1.2.0
py.cleanup # remove "*.pyc" and "*$py.class" (jython) files py.cleanup # remove "*.pyc" and "*$py.class" (jython) files
py.cleanup -e .swp -e .cache # also remove files with these extensions py.cleanup -e .swp -e .cache # also remove files with these extensions
py.cleanup -s # remove "build" and "dist" directory next to setup.py files py.cleanup -s # remove "build" and "dist" directory next to setup.py files
py.cleanup -d # also remove empty directories py.cleanup -d # also remove empty directories
py.cleanup -a # synonym for "-s -d -e 'pip-log.txt'" py.cleanup -a # synonym for "-s -d -e 'pip-log.txt'"
py.cleanup -n # dry run, only show what would be removed py.cleanup -n # dry run, only show what would be removed
- add a new option "py.test --funcargs" which shows available funcargs - add a new option "py.test --funcargs" which shows available funcargs
and their help strings (docstrings on their respective factory function) and their help strings (docstrings on their respective factory function)
for a given test path for a given test path
- display a short and concise traceback if a funcarg lookup fails - display a short and concise traceback if a funcarg lookup fails
- early-load "conftest.py" files in non-dot first-level sub directories. - early-load "conftest.py" files in non-dot first-level sub directories.
allows to conveniently keep and access test-related options in a ``test`` allows to conveniently keep and access test-related options in a ``test``
subdir and still add command line options. subdir and still add command line options.
- fix issue67: new super-short traceback-printing option: "--tb=line" will print a single line for each failing (python) test indicating its filename, lineno and the failure value - fix issue67: new super-short traceback-printing option: "--tb=line" will print a single line for each failing (python) test indicating its filename, lineno and the failure value
- fix issue78: always call python-level teardown functions even if the - fix issue78: always call python-level teardown functions even if the
according setup failed. This includes refinements for calling setup_module/class functions according setup failed. This includes refinements for calling setup_module/class functions
which will now only be called once instead of the previous behaviour where they'd be called which will now only be called once instead of the previous behaviour where they'd be called
multiple times if they raise an exception (including a Skipped exception). Any exception multiple times if they raise an exception (including a Skipped exception). Any exception
will be re-corded and associated with all tests in the according module/class scope. will be re-corded and associated with all tests in the according module/class scope.
- fix issue63: assume <40 columns to be a bogus terminal width, default to 80 - fix issue63: assume <40 columns to be a bogus terminal width, default to 80
- fix pdb debugging to be in the correct frame on raises-related errors - fix pdb debugging to be in the correct frame on raises-related errors
- update apipkg.py to fix an issue where recursive imports might - update apipkg.py to fix an issue where recursive imports might
unnecessarily break importing unnecessarily break importing
- fix plugin links - fix plugin links
Changes between 1.2 and 1.1.1 Changes between 1.2 and 1.1.1
===================================== =====================================
- moved dist/looponfailing from py.test core into a new - moved dist/looponfailing from py.test core into a new
separately released pytest-xdist plugin. separately released pytest-xdist plugin.
- new junitxml plugin: --junitxml=path will generate a junit style xml file - new junitxml plugin: --junitxml=path will generate a junit style xml file
which is processable e.g. by the Hudson CI system. which is processable e.g. by the Hudson CI system.
- new option: --genscript=path will generate a standalone py.test script - new option: --genscript=path will generate a standalone py.test script
which will not need any libraries installed. thanks to Ralf Schmitt. which will not need any libraries installed. thanks to Ralf Schmitt.
- new option: --ignore will prevent specified path from collection. - new option: --ignore will prevent specified path from collection.
Can be specified multiple times. Can be specified multiple times.
- new option: --confcutdir=dir will make py.test only consider conftest - new option: --confcutdir=dir will make py.test only consider conftest
files that are relative to the specified dir. files that are relative to the specified dir.
- new funcarg: "pytestconfig" is the pytest config object for access - new funcarg: "pytestconfig" is the pytest config object for access
to command line args and can now be easily used in a test. to command line args and can now be easily used in a test.
- install 'py.test' and `py.which` with a ``-$VERSION`` suffix to - install 'py.test' and `py.which` with a ``-$VERSION`` suffix to
disambiguate between Python3, python2.X, Jython and PyPy installed versions. disambiguate between Python3, python2.X, Jython and PyPy installed versions.
- new "pytestconfig" funcarg allows access to test config object - new "pytestconfig" funcarg allows access to test config object
- new "pytest_report_header" hook can return additional lines - new "pytest_report_header" hook can return additional lines
to be displayed at the header of a test run. to be displayed at the header of a test run.
- (experimental) allow "py.test path::name1::name2::..." for pointing - (experimental) allow "py.test path::name1::name2::..." for pointing
to a test within a test collection directly. This might eventually to a test within a test collection directly. This might eventually
evolve as a full substitute to "-k" specifications. evolve as a full substitute to "-k" specifications.
- streamlined plugin loading: order is now as documented in - streamlined plugin loading: order is now as documented in
customize.html: setuptools, ENV, commandline, conftest. customize.html: setuptools, ENV, commandline, conftest.
also setuptools entry point names are turned to canonical namees ("pytest_*") also setuptools entry point names are turned to canonical namees ("pytest_*")
- automatically skip tests that need 'capfd' but have no os.dup - automatically skip tests that need 'capfd' but have no os.dup
- allow pytest_generate_tests to be defined in classes as well - allow pytest_generate_tests to be defined in classes as well
- deprecate usage of 'disabled' attribute in favour of pytestmark - deprecate usage of 'disabled' attribute in favour of pytestmark
- deprecate definition of Directory, Module, Class and Function nodes - deprecate definition of Directory, Module, Class and Function nodes
in conftest.py files. Use pytest collect hooks instead. in conftest.py files. Use pytest collect hooks instead.
@ -320,28 +320,28 @@ Changes between 1.2 and 1.1.1
change its long command line options to be a bit shorter (see py.test -h). change its long command line options to be a bit shorter (see py.test -h).
- change: pytest doctest plugin is now enabled by default and has a - change: pytest doctest plugin is now enabled by default and has a
new option --doctest-glob to set a pattern for file matches. new option --doctest-glob to set a pattern for file matches.
- change: remove internal py._* helper vars, only keep py._pydir - change: remove internal py._* helper vars, only keep py._pydir
- robustify capturing to survive if custom pytest_runtest_setup - robustify capturing to survive if custom pytest_runtest_setup
code failed and prevented the capturing setup code from running. code failed and prevented the capturing setup code from running.
- make py.test.* helpers provided by default plugins visible early - - make py.test.* helpers provided by default plugins visible early -
works transparently both for pydoc and for interactive sessions works transparently both for pydoc and for interactive sessions
which will regularly see e.g. py.test.mark and py.test.importorskip. which will regularly see e.g. py.test.mark and py.test.importorskip.
- simplify internal plugin manager machinery - simplify internal plugin manager machinery
- simplify internal collection tree by introducing a RootCollector node - simplify internal collection tree by introducing a RootCollector node
- fix assert reinterpreation that sees a call containing "keyword=..." - fix assert reinterpreation that sees a call containing "keyword=..."
- fix issue66: invoke pytest_sessionstart and pytest_sessionfinish - fix issue66: invoke pytest_sessionstart and pytest_sessionfinish
hooks on slaves during dist-testing, report module/session teardown hooks on slaves during dist-testing, report module/session teardown
hooks correctly. hooks correctly.
- fix issue65: properly handle dist-testing if no - fix issue65: properly handle dist-testing if no
execnet/py lib installed remotely. execnet/py lib installed remotely.
- skip some install-tests if no execnet is available - skip some install-tests if no execnet is available
@ -351,15 +351,15 @@ Changes between 1.2 and 1.1.1
Changes between 1.1.1 and 1.1.0 Changes between 1.1.1 and 1.1.0
===================================== =====================================
- introduce automatic plugin registration via 'pytest11' - introduce automatic plugin registration via 'pytest11'
entrypoints via setuptools' pkg_resources.iter_entry_points entrypoints via setuptools' pkg_resources.iter_entry_points
- fix py.test dist-testing to work with execnet >= 1.0.0b4 - fix py.test dist-testing to work with execnet >= 1.0.0b4
- re-introduce py.test.cmdline.main() for better backward compatibility - re-introduce py.test.cmdline.main() for better backward compatibility
- svn paths: fix a bug with path.check(versioned=True) for svn paths, - svn paths: fix a bug with path.check(versioned=True) for svn paths,
allow '%' in svn paths, make svnwc.update() default to interactive mode allow '%' in svn paths, make svnwc.update() default to interactive mode
like in 1.0.x and add svnwc.update(interactive=False) to inhibit interaction. like in 1.0.x and add svnwc.update(interactive=False) to inhibit interaction.
- refine distributed tarball to contain test and no pyc files - refine distributed tarball to contain test and no pyc files
@ -374,16 +374,16 @@ Changes between 1.1.0 and 1.0.2
* remove py.rest tool and internal namespace - it was * remove py.rest tool and internal namespace - it was
never really advertised and can still be used with never really advertised and can still be used with
the old release if needed. If there is interest the old release if needed. If there is interest
it could be revived into its own tool i guess. it could be revived into its own tool i guess.
* fix issue48 and issue59: raise an Error if the module * fix issue48 and issue59: raise an Error if the module
from an imported test file does not seem to come from from an imported test file does not seem to come from
the filepath - avoids "same-name" confusion that has the filepath - avoids "same-name" confusion that has
been reported repeatedly been reported repeatedly
* merged Ronny's nose-compatibility hacks: now * merged Ronny's nose-compatibility hacks: now
nose-style setup_module() and setup() functions are nose-style setup_module() and setup() functions are
supported supported
* introduce generalized py.test.mark function marking * introduce generalized py.test.mark function marking
@ -392,112 +392,112 @@ Changes between 1.1.0 and 1.0.2
* deprecate parser.addgroup in favour of getgroup which creates option group * deprecate parser.addgroup in favour of getgroup which creates option group
* add --report command line option that allows to control showing of skipped/xfailed sections * add --report command line option that allows to control showing of skipped/xfailed sections
* generalized skipping: a new way to mark python functions with skipif or xfail * generalized skipping: a new way to mark python functions with skipif or xfail
at function, class and modules level based on platform or sys-module attributes. at function, class and modules level based on platform or sys-module attributes.
* extend py.test.mark decorator to allow for positional args * extend py.test.mark decorator to allow for positional args
* introduce and test "py.cleanup -d" to remove empty directories * introduce and test "py.cleanup -d" to remove empty directories
* fix issue #59 - robustify unittest test collection * fix issue #59 - robustify unittest test collection
* make bpython/help interaction work by adding an __all__ attribute * make bpython/help interaction work by adding an __all__ attribute
to ApiModule, cleanup initpkg to ApiModule, cleanup initpkg
* use MIT license for pylib, add some contributors * use MIT license for pylib, add some contributors
* remove py.execnet code and substitute all usages with 'execnet' proper * remove py.execnet code and substitute all usages with 'execnet' proper
* fix issue50 - cached_setup now caches more to expectations * fix issue50 - cached_setup now caches more to expectations
for test functions with multiple arguments. for test functions with multiple arguments.
* merge Jarko's fixes, issue #45 and #46 * merge Jarko's fixes, issue #45 and #46
* add the ability to specify a path for py.lookup to search in * add the ability to specify a path for py.lookup to search in
* fix a funcarg cached_setup bug probably only occuring * fix a funcarg cached_setup bug probably only occuring
in distributed testing and "module" scope with teardown. in distributed testing and "module" scope with teardown.
* many fixes and changes for making the code base python3 compatible, * many fixes and changes for making the code base python3 compatible,
many thanks to Benjamin Peterson for helping with this. many thanks to Benjamin Peterson for helping with this.
* consolidate builtins implementation to be compatible with >=2.3, * consolidate builtins implementation to be compatible with >=2.3,
add helpers to ease keeping 2 and 3k compatible code add helpers to ease keeping 2 and 3k compatible code
* deprecate py.compat.doctest|subprocess|textwrap|optparse * deprecate py.compat.doctest|subprocess|textwrap|optparse
* deprecate py.magic.autopath, remove py/magic directory * deprecate py.magic.autopath, remove py/magic directory
* move pytest assertion handling to py/code and a pytest_assertion * move pytest assertion handling to py/code and a pytest_assertion
plugin, add "--no-assert" option, deprecate py.magic namespaces plugin, add "--no-assert" option, deprecate py.magic namespaces
in favour of (less) py.code ones. in favour of (less) py.code ones.
* consolidate and cleanup py/code classes and files * consolidate and cleanup py/code classes and files
* cleanup py/misc, move tests to bin-for-dist * cleanup py/misc, move tests to bin-for-dist
* introduce delattr/delitem/delenv methods to py.test's monkeypatch funcarg * introduce delattr/delitem/delenv methods to py.test's monkeypatch funcarg
* consolidate py.log implementation, remove old approach. * consolidate py.log implementation, remove old approach.
* introduce py.io.TextIO and py.io.BytesIO for distinguishing between * introduce py.io.TextIO and py.io.BytesIO for distinguishing between
text/unicode and byte-streams (uses underlying standard lib io.* text/unicode and byte-streams (uses underlying standard lib io.*
if available) if available)
* make py.unittest_convert helper script available which converts "unittest.py" * make py.unittest_convert helper script available which converts "unittest.py"
style files into the simpler assert/direct-test-classes py.test/nosetests style files into the simpler assert/direct-test-classes py.test/nosetests
style. The script was written by Laura Creighton. style. The script was written by Laura Creighton.
* simplified internal localpath implementation * simplified internal localpath implementation
Changes between 1.0.1 and 1.0.2 Changes between 1.0.1 and 1.0.2
===================================== =====================================
* fixing packaging issues, triggered by fedora redhat packaging, * fixing packaging issues, triggered by fedora redhat packaging,
also added doc, examples and contrib dirs to the tarball. also added doc, examples and contrib dirs to the tarball.
* added a documentation link to the new django plugin. * added a documentation link to the new django plugin.
Changes between 1.0.0 and 1.0.1 Changes between 1.0.0 and 1.0.1
===================================== =====================================
* added a 'pytest_nose' plugin which handles nose.SkipTest, * added a 'pytest_nose' plugin which handles nose.SkipTest,
nose-style function/method/generator setup/teardown and nose-style function/method/generator setup/teardown and
tries to report functions correctly. tries to report functions correctly.
* capturing of unicode writes or encoded strings to sys.stdout/err * capturing of unicode writes or encoded strings to sys.stdout/err
work better, also terminalwriting was adapted and somewhat work better, also terminalwriting was adapted and somewhat
unified between windows and linux. unified between windows and linux.
* improved documentation layout and content a lot * improved documentation layout and content a lot
* added a "--help-config" option to show conftest.py / ENV-var names for * added a "--help-config" option to show conftest.py / ENV-var names for
all longopt cmdline options, and some special conftest.py variables. all longopt cmdline options, and some special conftest.py variables.
renamed 'conf_capture' conftest setting to 'option_capture' accordingly. renamed 'conf_capture' conftest setting to 'option_capture' accordingly.
* fix issue #27: better reporting on non-collectable items given on commandline * fix issue #27: better reporting on non-collectable items given on commandline
(e.g. pyc files) (e.g. pyc files)
* fix issue #33: added --version flag (thanks Benjamin Peterson) * fix issue #33: added --version flag (thanks Benjamin Peterson)
* fix issue #32: adding support for "incomplete" paths to wcpath.status() * fix issue #32: adding support for "incomplete" paths to wcpath.status()
* "Test" prefixed classes are *not* collected by default anymore if they * "Test" prefixed classes are *not* collected by default anymore if they
have an __init__ method have an __init__ method
* monkeypatch setenv() now accepts a "prepend" parameter * monkeypatch setenv() now accepts a "prepend" parameter
* improved reporting of collection error tracebacks * improved reporting of collection error tracebacks
* simplified multicall mechanism and plugin architecture, * simplified multicall mechanism and plugin architecture,
renamed some internal methods and argnames renamed some internal methods and argnames
Changes between 1.0.0b9 and 1.0.0 Changes between 1.0.0b9 and 1.0.0
===================================== =====================================
* more terse reporting try to show filesystem path relatively to current dir * more terse reporting try to show filesystem path relatively to current dir
* improve xfail output a bit * improve xfail output a bit
Changes between 1.0.0b8 and 1.0.0b9 Changes between 1.0.0b8 and 1.0.0b9
@ -510,26 +510,26 @@ Changes between 1.0.0b8 and 1.0.0b9
* setup/teardown or collection problems now show as ERRORs * setup/teardown or collection problems now show as ERRORs
or with big "E"'s in the progress lines. they are reported or with big "E"'s in the progress lines. they are reported
and counted separately. and counted separately.
* dist-testing: properly handle test items that get locally * dist-testing: properly handle test items that get locally
collected but cannot be collected on the remote side - often collected but cannot be collected on the remote side - often
due to platform/dependency reasons due to platform/dependency reasons
* simplified py.test.mark API - see keyword plugin documentation * simplified py.test.mark API - see keyword plugin documentation
* integrate better with logging: capturing now by default captures * integrate better with logging: capturing now by default captures
test functions and their immediate setup/teardown in a single stream test functions and their immediate setup/teardown in a single stream
* capsys and capfd funcargs now have a readouterr() and a close() method * capsys and capfd funcargs now have a readouterr() and a close() method
(underlyingly py.io.StdCapture/FD objects are used which grew a (underlyingly py.io.StdCapture/FD objects are used which grew a
readouterr() method as well to return snapshots of captured out/err) readouterr() method as well to return snapshots of captured out/err)
* make assert-reinterpretation work better with comparisons not * make assert-reinterpretation work better with comparisons not
returning bools (reported with numpy from thanks maciej fijalkowski) returning bools (reported with numpy from thanks maciej fijalkowski)
* reworked per-test output capturing into the pytest_iocapture.py plugin * reworked per-test output capturing into the pytest_iocapture.py plugin
and thus removed capturing code from config object and thus removed capturing code from config object
* item.repr_failure(excinfo) instead of item.repr_failure(excinfo, outerr) * item.repr_failure(excinfo) instead of item.repr_failure(excinfo, outerr)
@ -539,126 +539,126 @@ Changes between 1.0.0b7 and 1.0.0b8
* pytest_unittest-plugin is now enabled by default * pytest_unittest-plugin is now enabled by default
* introduced pytest_keyboardinterrupt hook and * introduced pytest_keyboardinterrupt hook and
refined pytest_sessionfinish hooked, added tests. refined pytest_sessionfinish hooked, added tests.
* workaround a buggy logging module interaction ("closing already closed * workaround a buggy logging module interaction ("closing already closed
files"). Thanks to Sridhar Ratnakumar for triggering. files"). Thanks to Sridhar Ratnakumar for triggering.
* if plugins use "py.test.importorskip" for importing * if plugins use "py.test.importorskip" for importing
a dependency only a warning will be issued instead a dependency only a warning will be issued instead
of exiting the testing process. of exiting the testing process.
* many improvements to docs: * many improvements to docs:
- refined funcargs doc , use the term "factory" instead of "provider" - refined funcargs doc , use the term "factory" instead of "provider"
- added a new talk/tutorial doc page - added a new talk/tutorial doc page
- better download page - better download page
- better plugin docstrings - better plugin docstrings
- added new plugins page and automatic doc generation script - added new plugins page and automatic doc generation script
* fixed teardown problem related to partially failing funcarg setups * fixed teardown problem related to partially failing funcarg setups
(thanks MrTopf for reporting), "pytest_runtest_teardown" is now (thanks MrTopf for reporting), "pytest_runtest_teardown" is now
always invoked even if the "pytest_runtest_setup" failed. always invoked even if the "pytest_runtest_setup" failed.
* tweaked doctest output for docstrings in py modules, * tweaked doctest output for docstrings in py modules,
thanks Radomir. thanks Radomir.
Changes between 1.0.0b3 and 1.0.0b7 Changes between 1.0.0b3 and 1.0.0b7
============================================= =============================================
* renamed py.test.xfail back to py.test.mark.xfail to avoid * renamed py.test.xfail back to py.test.mark.xfail to avoid
two ways to decorate for xfail two ways to decorate for xfail
* re-added py.test.mark decorator for setting keywords on functions * re-added py.test.mark decorator for setting keywords on functions
(it was actually documented so removing it was not nice) (it was actually documented so removing it was not nice)
* remove scope-argument from request.addfinalizer() because * remove scope-argument from request.addfinalizer() because
request.cached_setup has the scope arg. TOOWTDI. request.cached_setup has the scope arg. TOOWTDI.
* perform setup finalization before reporting failures * perform setup finalization before reporting failures
* apply modified patches from Andreas Kloeckner to allow * apply modified patches from Andreas Kloeckner to allow
test functions to have no func_code (#22) and to make test functions to have no func_code (#22) and to make
"-k" and function keywords work (#20) "-k" and function keywords work (#20)
* apply patch from Daniel Peolzleithner (issue #23) * apply patch from Daniel Peolzleithner (issue #23)
* resolve issue #18, multiprocessing.Manager() and * resolve issue #18, multiprocessing.Manager() and
redirection clash redirection clash
* make __name__ == "__channelexec__" for remote_exec code * make __name__ == "__channelexec__" for remote_exec code
Changes between 1.0.0b1 and 1.0.0b3 Changes between 1.0.0b1 and 1.0.0b3
============================================= =============================================
* plugin classes are removed: one now defines * plugin classes are removed: one now defines
hooks directly in conftest.py or global pytest_*.py hooks directly in conftest.py or global pytest_*.py
files. files.
* added new pytest_namespace(config) hook that allows * added new pytest_namespace(config) hook that allows
to inject helpers directly to the py.test.* namespace. to inject helpers directly to the py.test.* namespace.
* documented and refined many hooks * documented and refined many hooks
* added new style of generative tests via
pytest_generate_tests hook that integrates
well with function arguments.
* added new style of generative tests via
pytest_generate_tests hook that integrates
well with function arguments.
Changes between 0.9.2 and 1.0.0b1 Changes between 0.9.2 and 1.0.0b1
============================================= =============================================
* introduced new "funcarg" setup method, * introduced new "funcarg" setup method,
see doc/test/funcarg.txt see doc/test/funcarg.txt
* introduced plugin architecuture and many * introduced plugin architecuture and many
new py.test plugins, see new py.test plugins, see
doc/test/plugins.txt doc/test/plugins.txt
* teardown_method is now guaranteed to get * teardown_method is now guaranteed to get
called after a test method has run. called after a test method has run.
* new method: py.test.importorskip(mod,minversion) * new method: py.test.importorskip(mod,minversion)
will either import or call py.test.skip() will either import or call py.test.skip()
* completely revised internal py.test architecture * completely revised internal py.test architecture
* new py.process.ForkedFunc object allowing to * new py.process.ForkedFunc object allowing to
fork execution of a function to a sub process fork execution of a function to a sub process
and getting a result back. and getting a result back.
XXX lots of things missing here XXX XXX lots of things missing here XXX
Changes between 0.9.1 and 0.9.2 Changes between 0.9.1 and 0.9.2
=============================== ===============================
* refined installation and metadata, created new setup.py, * refined installation and metadata, created new setup.py,
now based on setuptools/ez_setup (thanks to Ralf Schmitt now based on setuptools/ez_setup (thanks to Ralf Schmitt
for his support). for his support).
* improved the way of making py.* scripts available in * improved the way of making py.* scripts available in
windows environments, they are now added to the windows environments, they are now added to the
Scripts directory as ".cmd" files. Scripts directory as ".cmd" files.
* py.path.svnwc.status() now is more complete and * py.path.svnwc.status() now is more complete and
uses xml output from the 'svn' command if available uses xml output from the 'svn' command if available
(Guido Wesdorp) (Guido Wesdorp)
* fix for py.path.svn* to work with svn 1.5 * fix for py.path.svn* to work with svn 1.5
(Chris Lamb) (Chris Lamb)
* fix path.relto(otherpath) method on windows to * fix path.relto(otherpath) method on windows to
use normcase for checking if a path is relative. use normcase for checking if a path is relative.
* py.test's traceback is better parseable from editors * py.test's traceback is better parseable from editors
(follows the filenames:LINENO: MSG convention) (follows the filenames:LINENO: MSG convention)
(thanks to Osmo Salomaa) (thanks to Osmo Salomaa)
* fix to javascript-generation, "py.test --runbrowser" * fix to javascript-generation, "py.test --runbrowser"
should work more reliably now should work more reliably now
* removed previously accidentally added * removed previously accidentally added
py.test.broken and py.test.notimplemented helpers. py.test.broken and py.test.notimplemented helpers.
* there now is a py.__version__ attribute * there now is a py.__version__ attribute

View File

@ -72,7 +72,7 @@ class Conftest(object):
clist.append(self.importconftest(conftestpath)) clist.append(self.importconftest(conftestpath))
self._md5cache[key] = conftestpath self._md5cache[key] = conftestpath
else: else:
# use some kind of logging # use some kind of logging
print ("WARN: not loading %s" % conftestpath) print ("WARN: not loading %s" % conftestpath)
clist[:0] = self.getconftestmodules(dp) clist[:0] = self.getconftestmodules(dp)
self._path2confmods[path] = clist self._path2confmods[path] = clist

View File

@ -10,7 +10,7 @@ sdistsrc={distshare}/py-*
changedir=testing changedir=testing
commands= commands=
py.test -rfsxX --junitxml={envlogdir}/junit-{envname}.xml --tools-on-path [] py.test -rfsxX --junitxml={envlogdir}/junit-{envname}.xml --tools-on-path []
deps= deps=
pexpect pexpect
[testenv:py27] [testenv:py27]
basepython=python2.7 basepython=python2.7
@ -36,7 +36,7 @@ deps=docutils
pytest-coverage pytest-coverage
pytest-cov pytest-cov
pytest-capturelog pytest-capturelog
commands= commands=
{envpython} bin-for-dist/makepluginlist.py {envpython} bin-for-dist/makepluginlist.py
py.test [doc] -rsfxX --junitxml={envlogdir}/junit-{envname}s.xml --forcegen py.test [doc] -rsfxX --junitxml={envlogdir}/junit-{envname}s.xml --forcegen