@@ -572,6 +572,17 @@ def tox_addoption(parser):
572
572
action = "store_true" ,
573
573
help = "override alwayscopy setting to True in all envs" ,
574
574
)
575
+ parser .add_argument (
576
+ "--no-provision" ,
577
+ action = "store" ,
578
+ nargs = "?" ,
579
+ default = False ,
580
+ const = True ,
581
+ metavar = "REQUIRES_JSON" ,
582
+ help = "Prevent tox provision, fail when requires are missing. "
583
+ "If a path is provided as a value and provisioning fails, "
584
+ "tox will save requires information in the file, in JSON format." ,
585
+ )
575
586
576
587
cli_skip_missing_interpreter (parser )
577
588
parser .add_argument ("--workdir" , metavar = "PATH" , help = "tox working directory" )
@@ -1318,8 +1329,8 @@ def handle_provision(self, config, reader):
1318
1329
# raise on unknown args
1319
1330
self .config ._parser .parse_cli (args = self .config .args , strict = True )
1320
1331
1321
- @staticmethod
1322
- def ensure_requires_satisfied (config , requires , min_version ):
1332
+ @classmethod
1333
+ def ensure_requires_satisfied (cls , config , requires , min_version ):
1323
1334
missing_requirements = []
1324
1335
failed_to_parse = False
1325
1336
deps = []
@@ -1346,12 +1357,31 @@ def ensure_requires_satisfied(config, requires, min_version):
1346
1357
missing_requirements .append (str (requirements .Requirement (require )))
1347
1358
if failed_to_parse :
1348
1359
raise tox .exception .BadRequirement ()
1360
+ if config .option .no_provision and missing_requirements :
1361
+ msg = "Provisioning explicitly disabled within {}, but missing {}"
1362
+ if config .option .no_provision is not True : # it's a path
1363
+ msg += ". Requires written to {}."
1364
+ cls .write_requires_to_json_file (config )
1365
+ raise tox .exception .Error (
1366
+ msg .format (sys .executable , missing_requirements , config .option .no_provision )
1367
+ )
1349
1368
if WITHIN_PROVISION and missing_requirements :
1350
1369
msg = "break infinite loop provisioning within {} missing {}"
1351
1370
raise tox .exception .Error (msg .format (sys .executable , missing_requirements ))
1352
1371
config .run_provision = bool (len (missing_requirements ))
1353
1372
return deps
1354
1373
1374
+ @staticmethod
1375
+ def write_requires_to_json_file (config ):
1376
+ import json
1377
+
1378
+ requires_dict = {
1379
+ "minversion" : config .minversion ,
1380
+ "requires" : config .requires ,
1381
+ }
1382
+ with open (config .option .no_provision , "w" , encoding = "utf-8" ) as outfile :
1383
+ json .dump (requires_dict , outfile , indent = 4 )
1384
+
1355
1385
def parse_build_isolation (self , config , reader ):
1356
1386
config .isolated_build = reader .getbool ("isolated_build" , False )
1357
1387
config .isolated_build_env = reader .getstring ("isolated_build_env" , ".package" )
0 commit comments