File tree Expand file tree Collapse file tree 5 files changed +10
-19
lines changed
subtests/docker_cli/commit Expand file tree Collapse file tree 5 files changed +10
-19
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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)
1212autotest_version = 0.16.0-master-66-g9aaee
Original file line number Diff line number Diff line change 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
3737FMTSTRING = "%d.%d.%d"
Original file line number Diff line number Diff 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
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments