1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
|
#!/usr/bin/python3
#
# Copyright (c) 2022 Peter Pentchev <roam@ringlet.net>
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
"""Run the specified tests after all the others."""
from __future__ import annotations
import argparse
import dataclasses
import os
import re
import subprocess
import sys
VERSION = "0.1.2"
@dataclasses.dataclass(frozen=True)
class Config:
"""Runtime configuration for the tox_delay tool."""
envlist: list[str]
ignore: list[str]
parallel: str | None
tox_args: list[str]
def parse_args() -> Config:
"""Parse the command-line arguments."""
parser = argparse.ArgumentParser(prog="tox_delay")
parser.add_argument(
"--features", action="store_true", help="display information about supported features"
)
parser.add_argument(
"-p",
"--parallel",
type=str,
help="environments to run in parallel (not the delayed ones)",
)
parser.add_argument(
"-e",
"--envlist",
type=str,
help="the environments to delay",
)
parser.add_argument("-i", "--ignore", type=str, help="the environments to not run at all")
parser.add_argument(
"tox_args",
type=str,
nargs="*",
help="additional arguments to pass to both tox invocations",
)
args = parser.parse_args()
if args.features:
print(f"Features: tox-delay={VERSION} ignore=1.0 longopts=1.0 parallel=1.0")
sys.exit(0)
if args.envlist is None:
sys.exit("No envlist specified (-e/--envlist)")
return Config(
envlist=args.envlist.split(","),
ignore=args.ignore.split(",") if args.ignore else [],
parallel=args.parallel,
tox_args=args.tox_args,
)
def main() -> None:
"""Parse command-line arguments, do stuff."""
cfg = parse_args()
tox_cmd = [sys.executable, "-m", "tox"]
skip_env = dict(os.environ)
skip_env["TOX_SKIP_ENV"] = (
"^" + "|".join(re.escape(testenv) for testenv in cfg.ignore + cfg.envlist) + "$"
)
parallel_opts = ["-p", cfg.parallel] if cfg.parallel is not None else []
subprocess.check_call(tox_cmd + parallel_opts + cfg.tox_args, env=skip_env)
env_opts = ["-e", ",".join(cfg.envlist)]
subprocess.check_call(tox_cmd + env_opts + cfg.tox_args)
if __name__ == "__main__":
main()
|