Skip to content

Commit b4b691d

Browse files
committed
WIP: --no-provision
1 parent 5c494a8 commit b4b691d

File tree

1 file changed

+32
-2
lines changed

1 file changed

+32
-2
lines changed

src/tox/config/__init__.py

+32-2
Original file line numberDiff line numberDiff line change
@@ -572,6 +572,17 @@ def tox_addoption(parser):
572572
action="store_true",
573573
help="override alwayscopy setting to True in all envs",
574574
)
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+
)
575586

576587
cli_skip_missing_interpreter(parser)
577588
parser.add_argument("--workdir", metavar="PATH", help="tox working directory")
@@ -1318,8 +1329,8 @@ def handle_provision(self, config, reader):
13181329
# raise on unknown args
13191330
self.config._parser.parse_cli(args=self.config.args, strict=True)
13201331

1321-
@staticmethod
1322-
def ensure_requires_satisfied(config, requires, min_version):
1332+
@classmethod
1333+
def ensure_requires_satisfied(cls, config, requires, min_version):
13231334
missing_requirements = []
13241335
failed_to_parse = False
13251336
deps = []
@@ -1346,12 +1357,31 @@ def ensure_requires_satisfied(config, requires, min_version):
13461357
missing_requirements.append(str(requirements.Requirement(require)))
13471358
if failed_to_parse:
13481359
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+
)
13491368
if WITHIN_PROVISION and missing_requirements:
13501369
msg = "break infinite loop provisioning within {} missing {}"
13511370
raise tox.exception.Error(msg.format(sys.executable, missing_requirements))
13521371
config.run_provision = bool(len(missing_requirements))
13531372
return deps
13541373

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+
13551385
def parse_build_isolation(self, config, reader):
13561386
config.isolated_build = reader.getbool("isolated_build", False)
13571387
config.isolated_build_env = reader.getstring("isolated_build_env", ".package")

0 commit comments

Comments
 (0)