Skip to content

Commit edc4d8b

Browse files
committed
Merge pull request #493 from cevich/docker_0.8.3
Docker 0.8.3
2 parents 2e7e001 + 5beb8cc commit edc4d8b

File tree

5 files changed

+10
-19
lines changed

5 files changed

+10
-19
lines changed

conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
#: are also reflected in documentation.
2323
#:
2424
#: The short X.Y version. This MUST be inside single ("'") quotes for parsing!!
25-
version = '0.8.2'
25+
version = '0.8.3'
2626

2727
#: If extensions (or modules to document with autodoc) are in another directory,
2828
#: add these directories to sys.path here. If the directory is relative to the

config_defaults/defaults.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# all settings and sections defined here (config_defaults/)
77

88
##### API Version number applying to all bundled tests
9-
config_version = 0.8.2
9+
config_version = 0.8.3
1010

1111
#: Autotest version dependency for framework (or override for individual tests)
1212
autotest_version = 0.16.0-master-66-g9aaee

dockertest/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
#: API Revision number, as an integer (range 0-255). Not significant!
3333
#: for version comparisons. e.g. ``0.0.1 == 0.0.2 != 0.2.2``
34-
REVIS = 2
34+
REVIS = 3
3535

3636
#: String format representation for MAJOR, MINOR, and REVIS
3737
FMTSTRING = "%d.%d.%d"

subtests/docker_cli/commit/commit.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,9 @@ def cleanup(self):
117117
super(commit_base, self).cleanup()
118118
if self.config['remove_after_test']:
119119
dc = DockerContainers(self)
120-
dc.clean_all(self.sub_stuff.get("container", []))
120+
container = self.sub_stuff.get("container")
121+
if container:
122+
dc.clean_all([container])
121123
di = di = DockerImages(self)
122124
images = [img.full_name
123125
for img in self.sub_stuff.get("image_list", [])]
@@ -140,3 +142,7 @@ def check_file_in_image(self):
140142
" test initialization: %s != %s" %
141143
(results.stdout.strip(),
142144
self.sub_stuff["rand_data"]))
145+
146+
147+
class good(commit_base):
148+
pass

subtests/docker_cli/commit/good.py

-15
This file was deleted.

0 commit comments

Comments
 (0)