[Python-modules-commits] [python-docker] branch upstream updated (6387547 -> 49556cb)
Ondřej Nový
onovy at moszumanska.debian.org
Thu Sep 8 12:38:57 UTC 2016
This is an automated email from the git hooks/post-receive script.
onovy pushed a change to branch upstream
in repository python-docker.
from 6387547 Import python-docker_1.7.2.orig.tar.gz
new 49556cb Import python-docker_1.9.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 | 5 +-
README.md | 8 +-
README.rst | 37 +++
docker/__init__.py | 2 +-
docker/api/build.py | 11 +-
docker/api/container.py | 46 +++-
docker/api/daemon.py | 4 +-
docker/api/image.py | 8 +-
docker/api/network.py | 25 +-
docker/auth/auth.py | 15 +-
docker/client.py | 67 +++++-
docker/constants.py | 9 +-
docker/ssladapter/ssladapter.py | 9 +
docker/tls.py | 7 +-
docker/transport/__init__.py | 6 +
docker/transport/npipeconn.py | 80 +++++++
docker/transport/npipesocket.py | 191 +++++++++++++++
docker/{unixconn => transport}/unixconn.py | 8 +-
docker/unixconn/__init__.py | 1 -
docker/utils/utils.py | 258 +++++++++++++++------
docker/version.py | 2 +-
docker_py.egg-info/PKG-INFO | 5 +-
docker_py.egg-info/SOURCES.txt | 15 +-
docker_py.egg-info/pbr.json | 1 -
docker_py.egg-info/requires.txt | 6 +
requirements.txt | 2 +
setup.py | 17 +-
test-requirements.txt | 4 +-
tests/integration/api_test.py | 2 +-
tests/integration/build_test.py | 28 +++
tests/integration/container_test.py | 92 +++++++-
tests/integration/image_test.py | 14 ++
tests/integration/network_test.py | 141 ++++++++++-
tests/unit/api_test.py | 30 +++
tests/unit/auth_test.py | 5 +-
tests/unit/client_test.py | 70 ++++++
tests/unit/container_test.py | 129 ++++++++++-
tests/unit/fake_api.py | 7 +
tests/unit/image_test.py | 3 +-
tests/unit/ssladapter_test.py | 79 +++++++
tests/{__init__.py => unit/testdata/certs/ca.pem} | 0
.../{__init__.py => unit/testdata/certs/cert.pem} | 0
tests/{__init__.py => unit/testdata/certs/key.pem} | 0
tests/unit/utils_test.py | 174 +++++++-------
45 files changed, 1391 insertions(+), 234 deletions(-)
create mode 100644 README.rst
create mode 100644 docker/transport/__init__.py
create mode 100644 docker/transport/npipeconn.py
create mode 100644 docker/transport/npipesocket.py
rename docker/{unixconn => transport}/unixconn.py (93%)
delete mode 100644 docker/unixconn/__init__.py
delete mode 100644 docker_py.egg-info/pbr.json
create mode 100644 tests/unit/client_test.py
create mode 100644 tests/unit/ssladapter_test.py
copy tests/{__init__.py => unit/testdata/certs/ca.pem} (100%)
copy tests/{__init__.py => unit/testdata/certs/cert.pem} (100%)
copy tests/{__init__.py => unit/testdata/certs/key.pem} (100%)
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-docker.git
More information about the Python-modules-commits
mailing list