File tree 5 files changed +10
-19
lines changed
subtests/docker_cli/commit
5 files changed +10
-19
lines changed Original file line number Diff line number Diff line change 22
22
#: are also reflected in documentation.
23
23
#:
24
24
#: The short X.Y version. This MUST be inside single ("'") quotes for parsing!!
25
- version = '0.8.2 '
25
+ version = '0.8.3 '
26
26
27
27
#: If extensions (or modules to document with autodoc) are in another directory,
28
28
#: add these directories to sys.path here. If the directory is relative to the
Original file line number Diff line number Diff line change 6
6
# all settings and sections defined here (config_defaults/)
7
7
8
8
# #### API Version number applying to all bundled tests
9
- config_version = 0.8.2
9
+ config_version = 0.8.3
10
10
11
11
# : Autotest version dependency for framework (or override for individual tests)
12
12
autotest_version = 0.16.0-master-66-g9aaee
Original file line number Diff line number Diff line change 31
31
32
32
#: API Revision number, as an integer (range 0-255). Not significant!
33
33
#: for version comparisons. e.g. ``0.0.1 == 0.0.2 != 0.2.2``
34
- REVIS = 2
34
+ REVIS = 3
35
35
36
36
#: String format representation for MAJOR, MINOR, and REVIS
37
37
FMTSTRING = "%d.%d.%d"
Original file line number Diff line number Diff line change @@ -117,7 +117,9 @@ def cleanup(self):
117
117
super (commit_base , self ).cleanup ()
118
118
if self .config ['remove_after_test' ]:
119
119
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 ])
121
123
di = di = DockerImages (self )
122
124
images = [img .full_name
123
125
for img in self .sub_stuff .get ("image_list" , [])]
@@ -140,3 +142,7 @@ def check_file_in_image(self):
140
142
" test initialization: %s != %s" %
141
143
(results .stdout .strip (),
142
144
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