[Python-modules-commits] [nose2] branch upstream updated (6006342 -> 5d7fc2e)

Brian May bam at moszumanska.debian.org
Tue Feb 23 06:00:27 UTC 2016


This is an automated email from the git hooks/post-receive script.

bam pushed a change to branch upstream
in repository nose2.

      from  6006342   Imported Upstream version 0.5.0
       new  5d7fc2e   Import nose2_0.6.0.orig.tar.gz

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 MANIFEST.in                                        |   2 +-
 PKG-INFO                                           |  10 +-
 README.rst                                         |   4 +-
 docs/Makefile                                      | 130 +++++++++++++++++++++
 docs/configuration.rst                             |   2 +-
 docs/dev/documenting_plugins.rst                   |   6 +-
 docs/dev/hook_reference.rst                        |  66 +++++------
 docs/dev/plugin_class_reference.rst                |   2 +-
 docs/dev/writing_plugins.rst                       |   4 +-
 docs/differences.rst                               |  10 +-
 docs/plugins/attrib.rst                            |   8 +-
 docs/plugins/eggdiscovery.rst                      |   6 +-
 docs/plugins/layers.rst                            |  18 +--
 docs/plugins/mp.rst                                |  18 +--
 docs/such_dsl.rst                                  |  10 +-
 docs/usage.rst                                     |   6 +-
 nose2.egg-info/PKG-INFO                            |  10 +-
 nose2.egg-info/SOURCES.txt                         |  14 +++
 nose2.egg-info/entry_points.txt                    |   2 +-
 nose2.egg-info/requires.txt                        |   4 +-
 nose2/collector.py                                 |   7 +-
 nose2/compat.py                                    |   6 +-
 nose2/config.py                                    |   4 +-
 nose2/events.py                                    |  68 +++++++----
 nose2/exceptions.py                                |   2 +-
 nose2/loader.py                                    |  10 +-
 nose2/main.py                                      |  32 ++---
 nose2/plugins/attrib.py                            |   2 +-
 nose2/plugins/collect.py                           |   8 +-
 nose2/plugins/coverage.py                          |  18 ++-
 nose2/plugins/debugger.py                          |   2 +-
 nose2/plugins/doctests.py                          |   3 +-
 nose2/plugins/dundertest.py                        |   7 +-
 nose2/plugins/junitxml.py                          |  46 ++++++--
 nose2/plugins/loader/discovery.py                  |   8 +-
 nose2/plugins/loader/eggdiscovery.py               |   4 +-
 nose2/plugins/loader/generators.py                 |   7 +-
 nose2/plugins/loader/loadtests.py                  |  18 +--
 nose2/plugins/loader/parameters.py                 |   2 +-
 nose2/plugins/loader/testclasses.py                |   8 +-
 nose2/plugins/mp.py                                |  14 +--
 nose2/plugins/printhooks.py                        |   4 +-
 nose2/plugins/result.py                            |   8 +-
 nose2/result.py                                    |  12 +-
 nose2/runner.py                                    |   2 +-
 nose2/session.py                                   |   2 +-
 nose2/sphinxext.py                                 |   2 +-
 nose2/suite.py                                     |  12 +-
 nose2/tests/_common.py                             |  14 +--
 .../functional/support/scenario/doctests/docs.py   |   4 +
 .../{tests_in_package => doctests}/docs.txt        |   0
 .../scenario/doctests/doctests_pkg1}/__init__.py   |   0
 .../scenario/doctests/doctests_pkg1/docs1.py       |   4 +
 .../docs.txt => doctests/doctests_pkg1/docs1.txt}  |   0
 .../test_junitxml_empty_properties.py}             |   0
 .../unittest.cfg                                   |   2 +-
 .../test_junitxml_missing_properties.py}           |   0
 .../unittest.cfg                                   |   2 +-
 .../test_junitxml_with_properties.py}              |   0
 .../unittest.cfg                                   |   2 +-
 nose2/tests/functional/test_coverage.py            |   9 +-
 nose2/tests/functional/test_doctests_plugin.py     |  60 ++++++++++
 nose2/tests/functional/test_junitxml_plugin.py     |  73 +++++++++++-
 nose2/tests/functional/test_loading.py             |  16 +++
 nose2/tests/functional/test_loadtests_plugin.py    |  11 ++
 nose2/tests/functional/test_util.py                |   6 +-
 nose2/tests/unit/test_collector.py                 |  21 ++++
 nose2/tests/unit/test_loader.py                    |  15 +++
 nose2/tests/unit/test_util.py                      |  16 +++
 nose2/tools/decorators.py                          |   4 +-
 nose2/tools/params.py                              |   8 +-
 nose2/tools/such.py                                |  39 +++----
 nose2/util.py                                      |  46 +++++---
 requirements-py26.txt                              |   1 +
 setup.py                                           |   2 +-
 75 files changed, 731 insertions(+), 274 deletions(-)
 create mode 100644 docs/Makefile
 create mode 100644 nose2/tests/functional/support/scenario/doctests/docs.py
 copy nose2/tests/functional/support/scenario/{tests_in_package => doctests}/docs.txt (100%)
 copy nose2/{backports => tests/functional/support/scenario/doctests/doctests_pkg1}/__init__.py (100%)
 create mode 100644 nose2/tests/functional/support/scenario/doctests/doctests_pkg1/docs1.py
 copy nose2/tests/functional/support/scenario/{tests_in_package/docs.txt => doctests/doctests_pkg1/docs1.txt} (100%)
 copy nose2/tests/functional/support/scenario/junitxml/{fail_to_write/test_junitxml_fail_to_write.py => empty_properties/test_junitxml_empty_properties.py} (100%)
 copy nose2/tests/functional/support/scenario/junitxml/{fail_to_write => empty_properties}/unittest.cfg (61%)
 copy nose2/tests/functional/support/scenario/junitxml/{fail_to_write/test_junitxml_fail_to_write.py => missing_properties/test_junitxml_missing_properties.py} (100%)
 copy nose2/tests/functional/support/scenario/junitxml/{fail_to_write => missing_properties}/unittest.cfg (61%)
 copy nose2/tests/functional/support/scenario/junitxml/{fail_to_write/test_junitxml_fail_to_write.py => with_properties/test_junitxml_with_properties.py} (100%)
 copy nose2/tests/functional/support/scenario/junitxml/{fail_to_write => with_properties}/unittest.cfg (61%)
 create mode 100644 nose2/tests/functional/test_doctests_plugin.py
 create mode 100644 nose2/tests/unit/test_util.py

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/nose2.git



More information about the Python-modules-commits mailing list