[Python-modules-commits] [betamax] branch master updated (2d7127b -> 2a52829)
Daniele Tricoli
eriol-guest at moszumanska.debian.org
Sat May 28 21:06:22 UTC 2016
This is an automated email from the git hooks/post-receive script.
eriol-guest pushed a change to branch master
in repository betamax.
from 2d7127b Fixed VCS URL (https)
new c6b84c8 New upstram release
new c06efe6 Import betamax_0.7.0.orig.tar.gz
new c2b0c5d record new upstream branch created by importing betamax_0.7.0.orig.tar.gz and merge it
new c088850 Bump Standards-Version to 3.9.8 (no changes needed)
new eea297d Bump X-Python-Version to >= 2.7 and X-Python3-Version to >= 3.3
new 862572e Enable tests at build time
new 6e6716f Build documentation
new 2a52829 Update changelog
The 8 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:
AUTHORS.rst | 1 +
HISTORY.rst | 26 ++
MANIFEST.in | 4 +-
PKG-INFO | 47 ++-
betamax/__init__.py | 9 +-
betamax/adapter.py | 92 +++-
betamax/cassette/__init__.py | 5 +-
betamax/cassette/cassette.py | 125 ++++--
betamax/cassette/interaction.py | 56 ++-
betamax/configure.py | 48 ++-
betamax/exceptions.py | 4 +
betamax/fixtures/pytest.py | 36 +-
betamax/{cassette => }/headers.py | 0
betamax/matchers/__init__.py | 5 +-
betamax/matchers/body.py | 2 +-
betamax/matchers/digest_auth.py | 2 +-
betamax/matchers/headers.py | 2 +-
betamax/matchers/query.py | 26 +-
betamax/{cassette => }/mock_response.py | 2 +-
betamax/options.py | 9 +-
betamax/serializers/__init__.py | 5 +-
betamax/serializers/proxy.py | 7 +
betamax/{cassette => }/util.py | 8 +-
debian/.git-dpm | 14 +-
debian/changelog | 21 +-
debian/clean | 1 +
debian/control | 28 +-
debian/python-betamax-doc.doc-base | 11 +
debian/python-betamax-doc.docs | 1 +
debian/rules | 24 +-
docs/Makefile | 130 ++++++
docs/api.rst | 197 +++++++++
docs/cassettes.rst | 151 +++++++
docs/conf.py | 249 +++++++++++
docs/configuring.rst | 348 ++++++++++++++++
docs/implementation_details.rst | 36 ++
docs/index.rst | 33 ++
docs/integrations.rst | 137 ++++++
docs/introduction.rst | 130 ++++++
docs/long_term_usage.rst | 148 +++++++
docs/matchers.rst | 117 ++++++
docs/record_modes.rst | 129 ++++++
docs/serializers.rst | 49 +++
docs/third_party_packages.rst | 167 ++++++++
docs/usage_patterns.rst | 120 ++++++
setup.cfg | 4 +-
setup.py | 8 +-
{betamax/fixtures => tests}/__init__.py | 0
tests/cassettes/GitHub_create_issue.json | 1 +
tests/cassettes/GitHub_emojis.json | 1 +
.../global_preserve_exact_body_bytes.json | 1 +
tests/cassettes/handles_digest_auth.json | 1 +
tests/cassettes/once_record_mode.json | 1 +
tests/cassettes/preserve_exact_bytes.json | 1 +
tests/cassettes/replay_interactions.json | 1 +
tests/cassettes/replay_multiple_times.json | 1 +
.../test-multiple-cookies-regression.json | 1 +
tests/cassettes/test.json | 1 +
.../test_replays_response_on_right_order.json | 63 +++
...res.TestPyTestFixtures.test_pytest_fixture.json | 1 +
tests/conftest.py | 8 +
tests/integration/test_allow_playback_repeats.py | 27 ++
tests/integration/test_backwards_compat.py | 2 +-
tests/integration/test_hooks.py | 62 +++
tests/integration/test_placeholders.py | 12 +-
.../integration/test_preserve_exact_body_bytes.py | 4 +-
tests/integration/test_record_modes.py | 30 +-
.../test_can_replay_interactions_multiple_times.py | 19 +
.../test_cassettes_retain_global_configuration.py | 26 ++
tests/regression/test_gzip_compression.py | 35 ++
.../test_once_prevents_new_interactions.py | 18 +
tests/regression/test_works_with_digest_auth.py | 23 +
tests/unit/test_adapter.py | 37 ++
tests/unit/test_betamax.py | 57 +++
tests/unit/test_cassette.py | 462 +++++++++++++++++++++
tests/unit/test_configure.py | 60 +++
tests/unit/test_decorator.py | 39 ++
tests/unit/test_fixtures.py | 94 +++++
tests/unit/test_matchers.py | 171 ++++++++
tests/unit/test_options.py | 51 +++
tests/unit/test_recorder.py | 76 ++++
tests/unit/test_replays.py | 21 +
tests/unit/test_serializers.py | 42 ++
83 files changed, 4055 insertions(+), 169 deletions(-)
rename betamax/{cassette => }/headers.py (100%)
rename betamax/{cassette => }/mock_response.py (94%)
rename betamax/{cassette => }/util.py (97%)
create mode 100644 debian/python-betamax-doc.doc-base
create mode 100644 debian/python-betamax-doc.docs
create mode 100644 docs/Makefile
create mode 100644 docs/api.rst
create mode 100644 docs/cassettes.rst
create mode 100644 docs/conf.py
create mode 100644 docs/configuring.rst
create mode 100644 docs/implementation_details.rst
create mode 100644 docs/index.rst
create mode 100644 docs/integrations.rst
create mode 100644 docs/introduction.rst
create mode 100644 docs/long_term_usage.rst
create mode 100644 docs/matchers.rst
create mode 100644 docs/record_modes.rst
create mode 100644 docs/serializers.rst
create mode 100644 docs/third_party_packages.rst
create mode 100644 docs/usage_patterns.rst
copy {betamax/fixtures => tests}/__init__.py (100%)
create mode 100644 tests/cassettes/GitHub_create_issue.json
create mode 100644 tests/cassettes/GitHub_emojis.json
create mode 100644 tests/cassettes/global_preserve_exact_body_bytes.json
create mode 100644 tests/cassettes/handles_digest_auth.json
create mode 100644 tests/cassettes/once_record_mode.json
create mode 100644 tests/cassettes/preserve_exact_bytes.json
create mode 100644 tests/cassettes/replay_interactions.json
create mode 100644 tests/cassettes/replay_multiple_times.json
create mode 100644 tests/cassettes/test-multiple-cookies-regression.json
create mode 100644 tests/cassettes/test.json
create mode 100644 tests/cassettes/test_replays_response_on_right_order.json
create mode 100644 tests/cassettes/tests.integration.test_fixtures.TestPyTestFixtures.test_pytest_fixture.json
create mode 100644 tests/conftest.py
create mode 100644 tests/integration/test_allow_playback_repeats.py
create mode 100644 tests/integration/test_hooks.py
create mode 100644 tests/regression/test_can_replay_interactions_multiple_times.py
create mode 100644 tests/regression/test_cassettes_retain_global_configuration.py
create mode 100644 tests/regression/test_gzip_compression.py
create mode 100644 tests/regression/test_once_prevents_new_interactions.py
create mode 100644 tests/regression/test_works_with_digest_auth.py
create mode 100644 tests/unit/test_adapter.py
create mode 100644 tests/unit/test_betamax.py
create mode 100644 tests/unit/test_cassette.py
create mode 100644 tests/unit/test_configure.py
create mode 100644 tests/unit/test_decorator.py
create mode 100644 tests/unit/test_fixtures.py
create mode 100644 tests/unit/test_matchers.py
create mode 100644 tests/unit/test_options.py
create mode 100644 tests/unit/test_recorder.py
create mode 100644 tests/unit/test_replays.py
create mode 100644 tests/unit/test_serializers.py
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/betamax.git
More information about the Python-modules-commits
mailing list