Skip to content

Commit 35a2679

Browse files
committed
making the mark argument pass correctly
1 parent 737acc4 commit 35a2679

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/devops_tasks/tox_harness.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ def prep_and_run_tox(targeted_packages, parsed_args, options_array=[]):
179179
os.environ["PREBUILT_WHEEL_DIR"] = parsed_args.wheel_dir
180180

181181
if parsed_args.mark_arg:
182-
options_array.extend(["-m", "'{}'".format(parsed_args.mark_arg)])
182+
options_array.extend(["-m", "{}".format(parsed_args.mark_arg)])
183183

184184
tox_command_tuples = []
185185

0 commit comments

Comments
 (0)