File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -130,11 +130,6 @@ def add_build_args(parser):
130
130
help = "paths (relative to the project root) where to install build products [%(default)s]" ,
131
131
default = ["/tmp/swiftpm" ],
132
132
metavar = "PATHS" )
133
- parser .add_argument (
134
- "--skip-integrated-driver-tests" ,
135
- action = "store_true" ,
136
- help = "whether to skip tests with the integrated driver" ,
137
- default = True )
138
133
139
134
def add_test_args (parser ):
140
135
"""Configures the parser with the arguments necessary for the test action."""
@@ -149,6 +144,11 @@ def add_test_args(parser):
149
144
action = "append" ,
150
145
help = "filter to apply on which tests to run" ,
151
146
default = [])
147
+ parser .add_argument (
148
+ "--skip-integrated-driver-tests" ,
149
+ action = "store_true" ,
150
+ help = "whether to skip tests with the integrated driver" ,
151
+ default = True )
152
152
153
153
def parse_global_args (args ):
154
154
"""Parses and cleans arguments necessary for all actions."""
You can’t perform that action at this time.
0 commit comments