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