Skip to content

Commit 96b0ff9

Browse files
authored
--skip-integrated-driver-tests should be a test argument (#2894)
I accidentally added it as a build argument.
1 parent 242e733 commit 96b0ff9

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Utilities/bootstrap

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -130,11 +130,6 @@ def add_build_args(parser):
130130
help="paths (relative to the project root) where to install build products [%(default)s]",
131131
default=["/tmp/swiftpm"],
132132
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)
138133

139134
def add_test_args(parser):
140135
"""Configures the parser with the arguments necessary for the test action."""
@@ -149,6 +144,11 @@ def add_test_args(parser):
149144
action="append",
150145
help="filter to apply on which tests to run",
151146
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)
152152

153153
def parse_global_args(args):
154154
"""Parses and cleans arguments necessary for all actions."""

0 commit comments

Comments
 (0)