diff options
author | Michael Hwang <mhwang@research.att.com> | 2017-09-21 12:19:32 -0400 |
---|---|---|
committer | Michael Hwang <mhwang@research.att.com> | 2017-09-21 17:04:39 -0400 |
commit | e11be5dc15e6800ed6111b7773b9e44571343207 (patch) | |
tree | ab5b973d7239b8942ab27c3ee04455533d6a4f23 /python-dockering/dockering | |
parent | 2200894f54019231bfe1a62845dda03e9bb87bd1 (diff) |
Fix tox to give more accurate coverage reports
* Also attempted to get sonar working
* Fixed minor things along the way
Change-Id: I434c0d791140e75cd5997be0cc3fefce7ccc292f
Issue-Id: DCAEGEN2-60
Signed-off-by: Michael Hwang <mhwang@research.att.com>
Diffstat (limited to 'python-dockering/dockering')
-rw-r--r-- | python-dockering/dockering/core.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python-dockering/dockering/core.py b/python-dockering/dockering/core.py index 9ef1ae3..d82e346 100644 --- a/python-dockering/dockering/core.py +++ b/python-dockering/dockering/core.py @@ -104,7 +104,7 @@ def start_container(client, container): # TODO: Have logic to inspect response and through NonRecoverableError # when start fails. Docker-py docs don't quickly tell me what the # response looks like. - response = client.start(container=container["Id"]) + client.start(container=container["Id"]) utils.logger.info("Container started: {0}".format(container["Id"])) # TODO: Maybe check stats? |