[Python-modules-commits] [pytest] branch upstream updated (b3de031 -> 486160d)
Sebastian Ramacher
sramacher at moszumanska.debian.org
Mon Mar 21 13:32:29 UTC 2016
This is an automated email from the git hooks/post-receive script.
sramacher pushed a change to branch upstream
in repository pytest.
from b3de031 Import pytest_2.8.7.orig.tar.gz
adds 486160d Import pytest_2.9.1.orig.tar.gz
No new revisions were added by this update.
Summary of changes:
AUTHORS | 10 +
CHANGELOG => CHANGELOG.rst | 391 ++++++++-----
CONTRIBUTING.rst | 142 +++--
LICENSE | 36 +-
MANIFEST.in | 2 +-
PKG-INFO | 9 +-
README.rst | 7 +-
_pytest/__init__.py | 2 +-
_pytest/_argcomplete.py | 3 -
_pytest/_code/__init__.py | 12 +
_pytest/_code/_py2traceback.py | 81 +++
_pytest/_code/code.py | 795 +++++++++++++++++++++++++++
_pytest/_code/source.py | 421 ++++++++++++++
_pytest/assertion/__init__.py | 13 +-
_pytest/assertion/newinterpret.py | 365 -------------
_pytest/assertion/oldinterpret.py | 566 -------------------
_pytest/assertion/reinterpret.py | 369 ++++++++++++-
_pytest/assertion/rewrite.py | 5 +
_pytest/assertion/util.py | 21 +-
_pytest/cacheprovider.py | 8 +-
_pytest/config.py | 73 ++-
_pytest/doctest.py | 84 ++-
_pytest/hookspec.py | 22 +-
_pytest/junitxml.py | 29 +-
_pytest/main.py | 15 +-
_pytest/mark.py | 2 +-
_pytest/pdb.py | 3 +-
_pytest/pytester.py | 23 +-
_pytest/python.py | 79 +--
_pytest/recwarn.py | 16 +-
_pytest/runner.py | 18 +-
_pytest/skipping.py | 65 ++-
_pytest/terminal.py | 24 +-
_pytest/unittest.py | 11 +-
doc/en/_templates/globaltoc.html | 1 +
doc/en/_templates/layout.html | 16 +
doc/en/_templates/links.html | 5 +
doc/en/announce/index.rst | 3 +
doc/en/announce/release-2.9.0.rst | 159 ++++++
doc/en/announce/release-2.9.1.rst | 65 +++
doc/en/announce/sprint2016.rst | 105 ++++
doc/en/assert.rst | 16 +-
doc/en/cache.rst | 12 +-
doc/en/capture.rst | 2 +-
doc/en/changelog.rst | 2 +-
doc/en/contents.rst | 7 +-
doc/en/doctest.rst | 34 +-
doc/en/example/assertion/failure_demo.py | 3 +-
doc/en/example/markers.rst | 32 +-
doc/en/example/multipython.py | 5 +-
doc/en/example/nonpython.rst | 6 +-
doc/en/example/parametrize.rst | 19 +-
doc/en/example/pythoncollection.rst | 6 +-
doc/en/example/reportingdemo.rst | 102 ++--
doc/en/example/simple.rst | 28 +-
doc/en/faq.rst | 5 +-
doc/en/fixture.rst | 10 +-
doc/en/getting-started.rst | 4 +-
doc/en/img/freiburg2.jpg | Bin 0 -> 104057 bytes
doc/en/index.rst | 1 +
doc/en/license.rst | 32 ++
doc/en/parametrize.rst | 8 +-
doc/en/recwarn.rst | 6 +
doc/en/skipping.rst | 153 ++++--
doc/en/talks.rst | 5 +-
doc/en/test/plugin/xdist.rst | 4 +-
doc/en/tmpdir.rst | 2 +-
doc/en/unittest.rst | 2 +-
doc/en/usage.rst | 12 +-
doc/en/writing_plugins.rst | 4 +-
doc/en/xdist.rst | 10 +-
pytest.egg-info/PKG-INFO | 9 +-
pytest.egg-info/SOURCES.txt | 16 +-
pytest.egg-info/entry_points.txt | 2 +-
pytest.egg-info/requires.txt | 6 +-
setup.py | 2 +-
testing/acceptance_test.py | 24 +-
testing/code/test_code.py | 174 ++++++
testing/code/test_excinfo.py | 911 +++++++++++++++++++++++++++++++
testing/code/test_source.py | 659 ++++++++++++++++++++++
testing/python/collect.py | 117 +++-
testing/python/fixture.py | 32 +-
testing/python/integration.py | 3 +-
testing/python/metafunc.py | 13 +-
testing/python/raises.py | 9 +-
testing/test_argcomplete.py | 4 -
testing/test_assertinterpret.py | 83 +--
testing/test_assertion.py | 27 +-
testing/test_assertrewrite.py | 20 +-
testing/test_cache.py | 43 +-
testing/test_capture.py | 5 +-
testing/test_config.py | 83 ++-
testing/test_conftest.py | 17 +-
testing/test_doctest.py | 85 ++-
testing/test_junitxml.py | 56 +-
testing/test_mark.py | 18 +-
testing/test_nose.py | 1 -
testing/test_parseopt.py | 6 -
testing/test_pdb.py | 13 +-
testing/test_pluginmanager.py | 8 +-
testing/test_recwarn.py | 10 +
testing/test_resultlog.py | 10 +-
testing/test_runner.py | 64 ++-
testing/test_skipping.py | 174 +++++-
testing/test_terminal.py | 70 ++-
testing/test_unittest.py | 3 +-
tox.ini | 11 +-
107 files changed, 5667 insertions(+), 1729 deletions(-)
rename CHANGELOG => CHANGELOG.rst (92%)
create mode 100644 _pytest/_code/__init__.py
create mode 100644 _pytest/_code/_py2traceback.py
create mode 100644 _pytest/_code/code.py
create mode 100644 _pytest/_code/source.py
delete mode 100644 _pytest/assertion/newinterpret.py
delete mode 100644 _pytest/assertion/oldinterpret.py
create mode 100644 doc/en/announce/release-2.9.0.rst
create mode 100644 doc/en/announce/release-2.9.1.rst
create mode 100644 doc/en/announce/sprint2016.rst
create mode 100644 doc/en/img/freiburg2.jpg
create mode 100644 doc/en/license.rst
create mode 100644 testing/code/test_code.py
create mode 100644 testing/code/test_excinfo.py
create mode 100644 testing/code/test_source.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