File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ def pytest_cmdline_main(config):
32
32
if config .getoption ("looponfail" ):
33
33
usepdb = config .getoption ("usepdb" ) # a core option
34
34
if usepdb :
35
- raise pytest .UsageError ("--pdb incompatible with --looponfail." )
35
+ raise pytest .UsageError ("--pdb is incompatible with --looponfail." )
36
36
looponfail_main (config )
37
37
return 2 # looponfail only can get stop with ctrl-C anyway
38
38
Original file line number Diff line number Diff line change @@ -126,12 +126,12 @@ def pytest_addoption(parser):
126
126
)
127
127
parser .addini (
128
128
"rsyncdirs" ,
129
- "list of (relative) paths to be rsynced for" " remote distributed testing." ,
129
+ "list of (relative) paths to be rsynced for remote distributed testing." ,
130
130
type = "pathlist" ,
131
131
)
132
132
parser .addini (
133
133
"rsyncignore" ,
134
- "list of (relative) glob-style paths to be ignored " " for rsyncing." ,
134
+ "list of (relative) glob-style paths to be ignored for rsyncing." ,
135
135
type = "pathlist" ,
136
136
)
137
137
parser .addini (
Original file line number Diff line number Diff line change @@ -187,7 +187,7 @@ def remove_node(self, node):
187
187
break
188
188
else :
189
189
raise RuntimeError (
190
- "Unable to identify crashitem on a workload with " " pending items"
190
+ "Unable to identify crashitem on a workload with pending items"
191
191
)
192
192
193
193
# Made uncompleted work unit available again
You can’t perform that action at this time.
0 commit comments