File tree Expand file tree Collapse file tree 1 file changed +2
-12
lines changed Expand file tree Collapse file tree 1 file changed +2
-12
lines changed Original file line number Diff line number Diff line change @@ -198,7 +198,6 @@ def setup_instparser(instparser):
198
198
199
199
setup_instparser (instparser )
200
200
instparser .add_argument ("--editable" , "-e" , action = "store_true" )
201
- instparser .add_argument ("--with-test-deps" , action = "store_true" )
202
201
instparser .add_argument ("--with-dev-deps" , action = "store_true" )
203
202
instparser .add_argument ("--eager-upgrades" , action = "store_true" )
204
203
@@ -211,7 +210,6 @@ def setup_instparser(instparser):
211
210
editable = True ,
212
211
with_dev_deps = True ,
213
212
eager_upgrades = True ,
214
- with_test_deps = True ,
215
213
)
216
214
217
215
lintparser = subparsers .add_parser (
@@ -467,16 +465,7 @@ def install_args(args):
467
465
check = True ,
468
466
)
469
467
470
- allfmt = "-e 'file://{}" if args .editable else "'file://{}"
471
- # packages should provide an extra_requires that is named
472
- # 'test', to denote test dependencies.
473
- extras = []
474
- if args .with_test_deps :
475
- extras .append ("test" )
476
- if extras :
477
- allfmt += f"[{ ',' .join (extras )} ]"
478
- # note the trailing single quote, to close the quote opened above.
479
- allfmt += "'"
468
+ allfmt = "-e 'file://{}'" if args .editable else "'file://{}'"
480
469
481
470
execute_args (
482
471
parse_subargs (
@@ -489,6 +478,7 @@ def install_args(args):
489
478
),
490
479
)
491
480
)
481
+
492
482
if args .with_dev_deps :
493
483
rootpath = find_projectroot ()
494
484
runsubprocess (
You can’t perform that action at this time.
0 commit comments