[Python-modules-commits] [pytest] branch upstream updated (ed8c366 -> d403984)

Ondrej Novy onovy at debian.org
Wed Feb 7 13:18:13 UTC 2018


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

onovy pushed a change to branch upstream
in repository pytest.

     omits  ed8c366   New upstream version 3.1.3
      adds  1f3ae24   Import pytest_3.1.3.orig.tar.gz
      adds  aa68af9   Import pytest_3.1.3.orig.tar.gz
      adds  a287af1   Import pytest_3.2.0.orig.tar.gz
      adds  2b84ea7   Import pytest_3.2.1.orig.tar.gz
      adds  d403984   Import pytest_3.2.5.orig.tar.gz

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (ed8c366)
            \
             N -- N -- N   refs/heads/upstream (d403984)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omits" are not gone; other references still
refer to them.  Any revisions marked "discards" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .github/PULL_REQUEST_TEMPLATE.md                   |   2 +-
 .travis.yml                                        |  31 +-
 AUTHORS                                            |  13 +
 CHANGELOG.rst                                      | 343 +++++++++++
 CONTRIBUTING.rst                                   |  76 ++-
 HOWTORELEASE.rst                                   |  14 +-
 PKG-INFO                                           |   4 +-
 README.rst                                         |   2 +-
 _pytest/_argcomplete.py                            |  12 +-
 _pytest/_code/_py2traceback.py                     |   5 +-
 _pytest/_code/code.py                              |  85 +--
 _pytest/_code/source.py                            |  64 +-
 _pytest/_version.py                                |   2 +-
 _pytest/assertion/__init__.py                      |   1 -
 _pytest/assertion/rewrite.py                       |  47 +-
 _pytest/assertion/util.py                          |  34 +-
 _pytest/cacheprovider.py                           |  59 +-
 _pytest/capture.py                                 |  49 +-
 _pytest/compat.py                                  |  49 +-
 _pytest/config.py                                  | 133 ++--
 _pytest/debugging.py                               |   2 +-
 _pytest/deprecated.py                              |  22 +-
 _pytest/doctest.py                                 |  40 +-
 _pytest/fixtures.py                                | 141 +++--
 _pytest/freeze_support.py                          |   1 -
 _pytest/helpconfig.py                              |  45 +-
 _pytest/hookspec.py                                |  78 ++-
 _pytest/impl                                       | 254 --------
 _pytest/junitxml.py                                |  15 +-
 _pytest/main.py                                    | 131 ++--
 _pytest/mark.py                                    | 130 +++-
 _pytest/monkeypatch.py                             |   6 +-
 _pytest/nodes.py                                   |  37 ++
 _pytest/nose.py                                    |   5 +-
 _pytest/outcomes.py                                | 140 +++++
 _pytest/pastebin.py                                |   8 +-
 _pytest/pytester.py                                | 130 ++--
 _pytest/python.py                                  | 678 ++++-----------------
 _pytest/python_api.py                              | 626 +++++++++++++++++++
 _pytest/recwarn.py                                 |   7 +-
 _pytest/resultlog.py                               |  13 +-
 _pytest/runner.py                                  | 214 +++----
 _pytest/skipping.py                                |  80 ++-
 _pytest/terminal.py                                | 119 ++--
 _pytest/tmpdir.py                                  |   4 +-
 _pytest/unittest.py                                |  20 +-
 _pytest/warnings.py                                |  12 +-
 appveyor.yml                                       |  12 +-
 changelog/_template.rst                            |   3 +-
 doc/en/_templates/globaltoc.html                   |   1 +
 doc/en/announce/index.rst                          |   6 +
 .../en/announce/release-3.2.0.rst                  |  27 +-
 .../{release-3.1.2.rst => release-3.2.1.rst}       |   9 +-
 .../{release-3.1.2.rst => release-3.2.2.rst}       |  15 +-
 .../{release-3.1.2.rst => release-3.2.3.rst}       |  12 +-
 .../{release-3.1.2.rst => release-3.2.4.rst}       |  23 +-
 .../en/announce/release-3.2.5.rst                  |   7 +-
 doc/en/assert.rst                                  |  15 +-
 doc/en/builtin.rst                                 |  28 +-
 doc/en/cache.rst                                   |  16 +-
 doc/en/contact.rst                                 |   5 +-
 doc/en/contents.rst                                |   5 +-
 doc/en/customize.rst                               |  84 ++-
 doc/en/development_guide.rst                       | 108 ++++
 doc/en/example/attic.rst                           |   2 +-
 doc/en/example/index.rst                           |   4 +-
 doc/en/example/markers.rst                         |  72 ++-
 doc/en/example/parametrize.rst                     |  58 +-
 doc/en/example/pythoncollection.rst                |  28 +-
 doc/en/example/reportingdemo.rst                   |   2 +-
 doc/en/example/simple.rst                          |  76 ++-
 doc/en/fixture.rst                                 |  76 +--
 doc/en/getting-started.rst                         |   5 +-
 doc/en/goodpractices.rst                           |  13 +-
 doc/en/historical-notes.rst                        | 177 ++++++
 doc/en/index.rst                                   |   2 +-
 doc/en/mark.rst                                    |   1 +
 doc/en/nose.rst                                    |   2 +-
 doc/en/parametrize.rst                             |  41 +-
 doc/en/plugins.rst                                 |   3 +-
 doc/en/proposals/parametrize_with_fixtures.rst     |  20 +-
 doc/en/pythonpath.rst                              |  76 +++
 doc/en/setup.rst                                   |  10 -
 doc/en/skipping.rst                                |  92 +--
 doc/en/unittest.rst                                | 161 +++--
 doc/en/usage.rst                                   | 110 ++--
 doc/en/warnings.rst                                |  34 ++
 doc/en/writing_plugins.rst                         | 126 +++-
 pytest.egg-info/PKG-INFO                           |   4 +-
 pytest.egg-info/SOURCES.txt                        |  16 +-
 pytest.egg-info/requires.txt                       |   1 +
 pytest.py                                          |   6 +-
 scripts/call-tox.bat                               |   2 +-
 setup.py                                           |   3 +-
 testing/acceptance_test.py                         |  43 +-
 testing/code/test_code.py                          |  46 +-
 testing/code/test_excinfo.py                       | 164 +++--
 testing/code/test_source.py                        | 100 +--
 testing/code/test_source_multiline_block.py        |  26 +
 testing/deprecated_test.py                         |   9 +-
 testing/freeze/create_executable.py                |   1 -
 testing/freeze/runtests_script.py                  |   2 +-
 testing/freeze/tests/test_trivial.py               |   3 +-
 testing/freeze/tox_run.py                          |   2 +-
 testing/python/approx.py                           | 292 +++++----
 testing/python/collect.py                          |  73 ++-
 testing/python/fixture.py                          | 574 +++++++++--------
 testing/python/integration.py                      |  16 +-
 testing/python/metafunc.py                         | 171 ++++--
 testing/python/raises.py                           |   1 -
 testing/python/setup_only.py                       |   2 +-
 testing/python/show_fixtures_per_test.py           |  21 +
 testing/test_argcomplete.py                        |  31 +-
 testing/test_assertion.py                          |  77 ++-
 testing/test_assertrewrite.py                      |  94 +--
 testing/test_cache.py                              | 202 +++++-
 testing/test_capture.py                            |  79 ++-
 testing/test_collection.py                         | 111 +++-
 testing/test_compat.py                             |  27 +-
 testing/test_config.py                             | 102 ++--
 testing/test_conftest.py                           | 109 ++--
 testing/test_doctest.py                            |  66 +-
 testing/test_helpconfig.py                         |   9 +-
 testing/test_junitxml.py                           |   4 +-
 testing/test_mark.py                               | 149 ++++-
 testing/test_monkeypatch.py                        |   3 +-
 testing/test_nodes.py                              |  18 +
 testing/test_nose.py                               |  80 +--
 testing/test_parseopt.py                           |  29 +-
 testing/test_pastebin.py                           |   7 +-
 testing/test_pdb.py                                |  16 +-
 testing/test_pluginmanager.py                      |  48 +-
 testing/test_pytester.py                           |   4 +
 testing/test_recwarn.py                            |  39 +-
 testing/test_resultlog.py                          |  20 +-
 testing/test_runner.py                             | 145 +++--
 testing/test_runner_xunit.py                       |  22 +-
 testing/test_session.py                            |  52 +-
 testing/test_skipping.py                           |  35 +-
 testing/test_terminal.py                           |  90 ++-
 testing/test_tmpdir.py                             |   5 +
 testing/test_unittest.py                           | 164 ++---
 testing/test_warnings.py                           |  41 +-
 tox.ini                                            | 230 +++----
 144 files changed, 6013 insertions(+), 3223 deletions(-)
 delete mode 100644 _pytest/impl
 create mode 100644 _pytest/nodes.py
 create mode 100644 _pytest/outcomes.py
 create mode 100644 _pytest/python_api.py
 copy tasks/release.minor.rst => doc/en/announce/release-3.2.0.rst (57%)
 copy doc/en/announce/{release-3.1.2.rst => release-3.2.1.rst} (79%)
 copy doc/en/announce/{release-3.1.2.rst => release-3.2.2.rst} (68%)
 copy doc/en/announce/{release-3.1.2.rst => release-3.2.3.rst} (76%)
 copy doc/en/announce/{release-3.1.2.rst => release-3.2.4.rst} (54%)
 copy tasks/release.patch.rst => doc/en/announce/release-3.2.5.rst (80%)
 create mode 100644 doc/en/development_guide.rst
 create mode 100644 doc/en/historical-notes.rst
 create mode 100644 doc/en/pythonpath.rst
 delete mode 100644 doc/en/setup.rst
 create mode 100644 testing/code/test_source_multiline_block.py
 create mode 100644 testing/test_nodes.py

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



More information about the Python-modules-commits mailing list