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 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094
|
# Copyright 2016 Alethea Katherine Flowers
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from __future__ import annotations
import argparse
import contextlib
import enum
import hashlib
import os
import pathlib
import re
import shutil
import subprocess
import sys
import unicodedata
from collections.abc import (
Callable,
Generator,
Iterable,
Mapping,
Sequence,
)
from types import TracebackType
from typing import (
TYPE_CHECKING,
Any,
NoReturn,
)
import nox.command
import nox.virtualenv
from nox._decorators import Func
from nox.logger import logger
from nox.popen import DEFAULT_INTERRUPT_TIMEOUT, DEFAULT_TERMINATE_TIMEOUT
from nox.virtualenv import CondaEnv, PassthroughEnv, ProcessEnv, VirtualEnv
if TYPE_CHECKING:
from typing import IO
from nox.command import ExternalType
from nox.manifest import Manifest
@contextlib.contextmanager
def _chdir(path: str) -> Generator[None, None, None]:
"""
Change the current working directory to the given path.
Follows python 3.11's chdir behaviour.
"""
cwd = os.getcwd()
try:
os.chdir(path)
yield
finally:
os.chdir(cwd)
def _normalize_path(envdir: str, path: str | bytes) -> str:
"""Normalizes a string to be a "safe" filesystem path for a virtualenv."""
if isinstance(path, bytes):
path = path.decode("utf-8")
path = unicodedata.normalize("NFKD", path).encode("ascii", "ignore")
path = path.decode("ascii")
path = re.sub(r"[^\w\s-]", "-", path).strip().lower()
path = re.sub(r"[-\s]+", "-", path)
path = path.strip("-")
full_path = os.path.join(envdir, path)
if len(full_path) > 100 - len("bin/pythonX.Y"):
if len(envdir) < 100 - 9:
path = hashlib.sha1(path.encode("ascii")).hexdigest()[:8]
full_path = os.path.join(envdir, path)
logger.warning("The virtualenv name was hashed to avoid being too long.")
else:
logger.error(
f"The virtualenv path {full_path} is too long and will cause issues on "
"some environments. Use the --envdir path to modify where "
"Nox stores virtualenvs."
)
return full_path
def _dblquote_pkg_install_args(args: Iterable[str]) -> tuple[str, ...]:
"""Double-quote package install arguments in case they contain '>' or '<' symbols"""
# routine used to handle a single arg
def _dblquote_pkg_install_arg(pkg_req_str: str) -> str:
# sanity check: we need an even number of double-quotes
if pkg_req_str.count('"') % 2 != 0:
raise ValueError(
f"ill-formatted argument with odd number of quotes: {pkg_req_str}"
)
if "<" in pkg_req_str or ">" in pkg_req_str:
if pkg_req_str[0] == pkg_req_str[-1] == '"':
# already double-quoted string
return pkg_req_str
else:
# need to double-quote string
if '"' in pkg_req_str:
raise ValueError(f"Cannot escape requirement string: {pkg_req_str}")
return f'"{pkg_req_str}"'
else:
# no dangerous char: no need to double-quote string
return pkg_req_str
# double-quote all args that need to be and return the result
return tuple(_dblquote_pkg_install_arg(a) for a in args)
class _SessionQuit(Exception):
pass
class _SessionSkip(Exception):
pass
class Status(enum.Enum):
ABORTED = -1
FAILED = 0
SUCCESS = 1
SKIPPED = 2
class _WorkingDirContext:
def __init__(self, dir: str | os.PathLike[str]) -> None:
self._prev_working_dir = os.getcwd()
os.chdir(dir)
def __enter__(self) -> _WorkingDirContext:
return self
def __exit__(
self,
exc_type: type[BaseException] | None,
exc_value: BaseException | None,
traceback: TracebackType | None,
) -> None:
os.chdir(self._prev_working_dir)
class Session:
"""The Session object is passed into each user-defined session function.
This is your primary means for installing package and running commands in
your Nox session.
"""
__slots__ = ("_runner",)
def __init__(self, runner: SessionRunner) -> None:
self._runner = runner
@property
def __dict__(self) -> dict[str, SessionRunner]: # type: ignore[override]
"""Attribute dictionary for object inspection.
This is needed because ``__slots__`` turns off ``__dict__`` by
default. Unlike a typical object, modifying the result of this
dictionary won't allow modification of the instance.
"""
return {"_runner": self._runner}
@property
def name(self) -> str:
"""The name of this session."""
return self._runner.friendly_name
@property
def env(self) -> dict[str, str]:
"""A dictionary of environment variables to pass into all commands."""
return self.virtualenv.env
@property
def posargs(self) -> list[str]:
"""Any extra arguments from the ``nox`` commandline or :class:`Session.notify`."""
return self._runner.posargs
@property
def virtualenv(self) -> ProcessEnv:
"""The virtualenv that all commands are run in."""
venv = self._runner.venv
if venv is None:
raise ValueError("A virtualenv has not been created for this session")
return venv
@property
def venv_backend(self) -> str:
"""The venv_backend selected."""
venv = self._runner.venv
if venv is None:
return "none"
return venv.venv_backend
@property
def python(self) -> str | Sequence[str] | bool | None:
"""The python version passed into ``@nox.session``."""
return self._runner.func.python
@property
def bin_paths(self) -> list[str] | None:
"""The bin directories for the virtualenv."""
return self.virtualenv.bin_paths
@property
def bin(self) -> str:
"""The first bin directory for the virtualenv."""
paths = self.bin_paths
if paths is None:
raise ValueError("The environment does not have a bin directory.")
return paths[0]
def create_tmp(self) -> str:
"""Create, and return, a temporary directory."""
tmpdir = os.path.join(self._runner.envdir, "tmp")
os.makedirs(tmpdir, exist_ok=True)
self.env["TMPDIR"] = os.path.abspath(tmpdir)
return tmpdir
@property
def cache_dir(self) -> pathlib.Path:
"""Create and return a 'shared cache' directory to be used across sessions."""
path = pathlib.Path(self._runner.global_config.envdir).joinpath(".cache")
path.mkdir(exist_ok=True)
return path
@property
def interactive(self) -> bool:
"""Returns True if Nox is being run in an interactive session or False otherwise."""
return not self._runner.global_config.non_interactive and sys.stdin.isatty()
@property
def invoked_from(self) -> str:
"""The directory that Nox was originally invoked from.
Since you can use the ``--noxfile / -f`` command-line
argument to run a Noxfile in a location different from your shell's
current working directory, Nox automatically changes the working directory
to the Noxfile's directory before running any sessions. This gives
you the original working directory that Nox was invoked form.
"""
return self._runner.global_config.invoked_from # type: ignore[no-any-return]
def chdir(self, dir: str | os.PathLike[str]) -> _WorkingDirContext:
"""Change the current working directory.
Can be used as a context manager to automatically restore the working directory::
with session.chdir("somewhere/deep/in/monorepo"):
# Runs in "/somewhere/deep/in/monorepo"
session.run("pytest")
# Runs in original working directory
session.run("flake8")
"""
self.log(f"cd {dir}")
return _WorkingDirContext(dir)
cd = chdir
"""An alias for :meth:`chdir`."""
def _run_func(self, func: Callable[..., Any], args: Iterable[Any]) -> Any:
"""Legacy support for running a function through :func`run`."""
self.log(f"{func}(args={args!r})")
try:
return func(*args)
except Exception as e:
logger.exception(f"Function {func!r} raised {e!r}.")
raise nox.command.CommandFailed() from e
def run(
self,
*args: str | os.PathLike[str],
env: Mapping[str, str | None] | None = None,
include_outer_env: bool = True,
silent: bool = False,
success_codes: Iterable[int] | None = None,
log: bool = True,
external: ExternalType | None = None,
stdout: int | IO[str] | None = None,
stderr: int | IO[str] = subprocess.STDOUT,
interrupt_timeout: float | None = DEFAULT_INTERRUPT_TIMEOUT,
terminate_timeout: float | None = DEFAULT_TERMINATE_TIMEOUT,
) -> Any | None:
"""Run a command.
Commands must be specified as a list of strings, for example::
session.run('pytest', '-k', 'fast', 'tests/')
session.run('flake8', '--import-order-style=google')
You **can not** just pass everything as one string. For example, this
**will not work**::
session.run('pytest -k fast tests/')
You can set environment variables for the command using ``env``::
session.run(
'bash', '-c', 'echo $SOME_ENV',
env={'SOME_ENV': 'Hello'})
You can extend the shutdown timeout to allow long-running cleanup tasks to
complete before being terminated. For example, if you wanted to allow ``pytest``
extra time to clean up large projects in the case that Nox receives an
interrupt signal from your build system and needs to terminate its child
processes::
session.run(
'pytest', '-k', 'long_cleanup',
interrupt_timeout=10.0,
terminate_timeout=2.0)
You can also tell Nox to treat non-zero exit codes as success using
``success_codes``. For example, if you wanted to treat the ``pytest``
"tests discovered, but none selected" error as success::
session.run(
'pytest', '-k', 'not slow',
success_codes=[0, 5])
On Windows, builtin commands like ``del`` cannot be directly invoked,
but you can use ``cmd /c`` to invoke them::
session.run('cmd', '/c', 'del', 'docs/modules.rst')
If ``session.run`` fails, it will stop the session and will not run the next steps.
Basically, this will raise a Python exception. Taking this in count, you can use a
``try...finally`` block for cleanup runs, that will run even if the other runs fail::
try:
session.run("coverage", "run", "-m", "pytest")
finally:
# Display coverage report even when tests fail.
session.run("coverage", "report")
If you pass ``silent=True``, you can capture the output of a command that would
otherwise be shown to the user. For example to get the current Git commit ID::
out = session.run(
"git", "rev-parse", "--short", "HEAD",
external=True, silent=True
)
print("Current Git commit is", out.strip())
:param env: A dictionary of environment variables to expose to the
command. By default, all environment variables are passed. You
can block an environment variable from the outer environment by
setting it to None.
:type env: dict or None
:param include_outer_env: Boolean parameter that determines if the
environment variables from the nox invocation environment should
be passed to the command. ``True`` by default.
:type include_outer_env: bool
:param bool silent: Silence command output, unless the command fails.
If ``True``, returns the command output (unless the command fails).
``False`` by default.
:param success_codes: A list of return codes that are considered
successful. By default, only ``0`` is considered success.
:type success_codes: list, tuple, or None
:param external: If False (the default) then programs not in the
virtualenv path will cause a warning. If True, no warning will be
emitted. These warnings can be turned into errors using
``--error-on-external-run``. This has no effect for sessions that
do not have a virtualenv.
:type external: bool
:param interrupt_timeout: The timeout (in seconds) that Nox should wait after it
and its children receive an interrupt signal before sending a terminate
signal to its children. Set to ``None`` to never send a terminate signal.
Default: ``0.3``
:type interrupt_timeout: float or None
:param terminate_timeout: The timeout (in seconds) that Nox should wait after it
sends a terminate signal to its children before sending a kill signal to
them. Set to ``None`` to never send a kill signal.
Default: ``0.2``
:type terminate_timeout: float or None
:param stdout: Redirect standard output of the command into a file. Can't be
combined with *silent*.
:type stdout: file or file descriptor
:param stderr: Redirect standard output of the command into a file. Can't be
combined with *silent*.
:type stderr: file or file descriptor
"""
if not args:
raise ValueError("At least one argument required to run().")
if len(args) == 1 and isinstance(args[0], (list, tuple)):
msg = "First argument to `session.run` is a list. Did you mean to use `session.run(*args)`?"
raise ValueError(msg)
if self._runner.global_config.install_only:
logger.info(f"Skipping {args[0]} run, as --install-only is set.")
return None
return self._run(
*args,
env=env,
include_outer_env=include_outer_env,
silent=silent,
success_codes=success_codes,
log=log,
external=external,
stdout=stdout,
stderr=stderr,
interrupt_timeout=interrupt_timeout,
terminate_timeout=terminate_timeout,
)
def run_install(
self,
*args: str | os.PathLike[str],
env: Mapping[str, str | None] | None = None,
include_outer_env: bool = True,
silent: bool = False,
success_codes: Iterable[int] | None = None,
log: bool = True,
external: ExternalType | None = None,
stdout: int | IO[str] | None = None,
stderr: int | IO[str] = subprocess.STDOUT,
interrupt_timeout: float | None = DEFAULT_INTERRUPT_TIMEOUT,
terminate_timeout: float | None = DEFAULT_TERMINATE_TIMEOUT,
) -> Any | None:
"""Run a command in the install step.
This is a variant of :meth:`run` that runs even in the presence of
``--install-only``. This method returns early if ``--no-install`` is
specified and the virtualenv is being reused. (In nox 2023.04.22 and
earlier, this was called ``run_always``, and that continues to be
available as an alias.)
Here are some cases where this method is useful:
- You need to install packages using a command other than ``pip
install`` or ``conda install``.
- You need to run a command as a prerequisite of package installation,
such as building a package or compiling a binary extension.
:param env: A dictionary of environment variables to expose to the
command. By default, all environment variables are passed.
:type env: dict or None
:param include_outer_env: Boolean parameter that determines if the
environment variables from the nox invocation environment should
be passed to the command. ``True`` by default.
:type include_outer_env: bool
:param bool silent: Silence command output, unless the command fails.
``False`` by default.
:param success_codes: A list of return codes that are considered
successful. By default, only ``0`` is considered success.
:type success_codes: list, tuple, or None
:param external: If False (the default) then programs not in the
virtualenv path will cause a warning. If True, no warning will be
emitted. These warnings can be turned into errors using
``--error-on-external-run``. This has no effect for sessions that
do not have a virtualenv.
:type external: bool
:param interrupt_timeout: The timeout (in seconds) that Nox should wait after it
and its children receive an interrupt signal before sending a terminate
signal to its children. Set to ``None`` to never send a terminate signal.
Default: ``0.3``
:type interrupt_timeout: float or None
:param terminate_timeout: The timeout (in seconds) that Nox should wait after it
sends a terminate signal to its children before sending a kill signal to
them. Set to ``None`` to never send a kill signal.
Default: ``0.2``
:type terminate_timeout: float or None
"""
if (
self._runner.global_config.no_install
and self._runner.venv is not None
and self._runner.venv._reused
):
return None
if not args:
raise ValueError("At least one argument required to run_install().")
return self._run(
*args,
env=env,
include_outer_env=include_outer_env,
silent=silent,
success_codes=success_codes,
log=log,
external=external,
stdout=stdout,
stderr=stderr,
interrupt_timeout=interrupt_timeout,
terminate_timeout=terminate_timeout,
)
def run_always(
self,
*args: str | os.PathLike[str],
env: Mapping[str, str | None] | None = None,
include_outer_env: bool = True,
silent: bool = False,
success_codes: Iterable[int] | None = None,
log: bool = True,
external: ExternalType | None = None,
stdout: int | IO[str] | None = None,
stderr: int | IO[str] = subprocess.STDOUT,
interrupt_timeout: float | None = DEFAULT_INTERRUPT_TIMEOUT,
terminate_timeout: float | None = DEFAULT_TERMINATE_TIMEOUT,
) -> Any | None:
"""This is an alias to ``run_install``, which better describes the use case.
:meta private:
"""
return self.run_install(
*args,
env=env,
include_outer_env=include_outer_env,
silent=silent,
success_codes=success_codes,
log=log,
external=external,
stdout=stdout,
stderr=stderr,
interrupt_timeout=interrupt_timeout,
terminate_timeout=terminate_timeout,
)
def _run(
self,
*args: str | os.PathLike[str],
env: Mapping[str, str | None] | None = None,
include_outer_env: bool,
silent: bool,
success_codes: Iterable[int] | None,
log: bool,
external: ExternalType | None,
stdout: int | IO[str] | None,
stderr: int | IO[str],
interrupt_timeout: float | None,
terminate_timeout: float | None,
) -> Any:
"""Like run(), except that it runs even if --install-only is provided."""
# Legacy support - run a function given.
if callable(args[0]):
return self._run_func(args[0], args[1:]) # type: ignore[unreachable]
# Using `"uv"` when `uv` is the backend is guaranteed to work, even if it was co-installed with nox.
if (
self.virtualenv.venv_backend == "uv"
and args[0] == "uv"
and nox.virtualenv.UV != "uv"
and shutil.which("uv", path=self.bin) is None # Session uv takes priority
):
args = (nox.virtualenv.UV, *args[1:])
# Combine the env argument with our virtualenv's env vars.
if include_outer_env:
overlay_env = env or {}
env = {**self.env, **overlay_env}
# If --error-on-external-run is specified, error on external programs.
if self._runner.global_config.error_on_external_run and external is None:
external = "error"
# Allow all external programs when running outside a sandbox.
if (
not self.virtualenv.is_sandboxed
or args[0] in self.virtualenv.allowed_globals
):
external = True
if external is None:
external = False
# Run a shell command.
return nox.command.run(
args,
env=env,
paths=self.bin_paths,
silent=silent,
success_codes=success_codes,
log=log,
external=external,
stdout=stdout,
stderr=stderr,
interrupt_timeout=interrupt_timeout,
terminate_timeout=terminate_timeout,
)
def conda_install(
self,
*args: str,
auto_offline: bool = True,
channel: str | Sequence[str] = "",
env: Mapping[str, str] | None = None,
include_outer_env: bool = True,
silent: bool | None = None,
success_codes: Iterable[int] | None = None,
log: bool = True,
stdout: int | IO[str] | None = None,
stderr: int | IO[str] = subprocess.STDOUT,
interrupt_timeout: float | None = DEFAULT_INTERRUPT_TIMEOUT,
terminate_timeout: float | None = DEFAULT_TERMINATE_TIMEOUT,
) -> None:
"""Install invokes `conda install`_ to install packages inside of the
session's environment.
To install packages directly::
session.conda_install('pandas')
session.conda_install('numpy', 'scipy')
session.conda_install('dask==2.1.0', channel='conda-forge')
To install packages from a ``requirements.txt`` file::
session.conda_install('--file', 'requirements.txt')
session.conda_install('--file', 'requirements-dev.txt')
By default this method will detect when internet connection is not
available and will add the `--offline` flag automatically in that case.
To disable this behaviour, set `auto_offline=False`.
To install the current package without clobbering conda-installed
dependencies::
session.install('.', '--no-deps')
# Install in editable mode.
session.install('-e', '.', '--no-deps')
You can specify a conda channel using `channel=`; a falsey value will
not change the current channels. You can specify a list of channels if
needed. It is highly recommended to specify this; micromamba does not
set default channels, and default channels vary for conda. Note that
"defaults" is also not permissivly licenced like "conda-forge" is.
Additional keyword args are the same as for :meth:`run`.
.. _conda install:
"""
venv = self._runner.venv
prefix_args: tuple[str, ...] = ()
if isinstance(venv, CondaEnv):
prefix_args = ("--prefix", venv.location)
elif not isinstance(venv, PassthroughEnv):
raise ValueError(
"A session without a conda environment can not install dependencies"
" from conda."
)
if not args:
raise ValueError("At least one argument required to install().")
if self._runner.global_config.no_install and (
isinstance(venv, PassthroughEnv) or venv._reused
):
return
# Escape args that should be (conda-specific; pip install does not need this)
args = _dblquote_pkg_install_args(args)
if silent is None:
silent = True
extraopts: list[str] = []
if auto_offline and venv.is_offline():
logger.warning(
"Automatically setting the `--offline` flag as conda repo seems"
" unreachable."
)
extraopts.append("--offline")
if channel:
if isinstance(channel, str):
extraopts.append(f"--channel={channel}")
else:
extraopts += [f"--channel={c}" for c in channel]
self._run(
venv.conda_cmd,
"install",
"--yes",
*extraopts,
*prefix_args,
*args,
env=env,
include_outer_env=include_outer_env,
silent=silent,
success_codes=success_codes,
log=log,
external="error",
stdout=stdout,
stderr=stderr,
interrupt_timeout=interrupt_timeout,
terminate_timeout=terminate_timeout,
)
def install(
self,
*args: str,
env: Mapping[str, str] | None = None,
include_outer_env: bool = True,
silent: bool | None = None,
success_codes: Iterable[int] | None = None,
log: bool = True,
external: ExternalType | None = None,
stdout: int | IO[str] | None = None,
stderr: int | IO[str] = subprocess.STDOUT,
interrupt_timeout: float | None = DEFAULT_INTERRUPT_TIMEOUT,
terminate_timeout: float | None = DEFAULT_TERMINATE_TIMEOUT,
) -> None:
"""Install invokes `pip`_ to install packages inside of the session's
virtualenv.
To install packages directly::
session.install('pytest')
session.install('requests', 'mock')
session.install('requests[security]==2.9.1')
To install packages from a ``requirements.txt`` file::
session.install('-r', 'requirements.txt')
session.install('-r', 'requirements-dev.txt')
To install the current package::
session.install('.')
# Install in editable mode.
session.install('-e', '.')
Additional keyword args are the same as for :meth:`run`.
.. warning::
Running ``session.install`` without a virtual environment
is no longer supported. If you still want to do that, please
use ``session.run("pip", "install", ...)`` instead.
.. _pip: https://pip.readthedocs.org
"""
venv = self._runner.venv
if not isinstance(
venv, (CondaEnv, VirtualEnv, PassthroughEnv)
): # pragma: no cover
raise ValueError(
"A session without a virtualenv can not install dependencies."
)
if isinstance(venv, PassthroughEnv):
if self._runner.global_config.no_install:
return
raise ValueError(
f"Session {self.name} does not have a virtual environment, so use of"
" session.install() is no longer allowed since it would modify the"
" global Python environment. If you're really sure that is what you"
' want to do, use session.run("pip", "install", ...) instead.'
)
if not args:
raise ValueError("At least one argument required to install().")
if self._runner.global_config.no_install and venv._reused:
return
if silent is None:
silent = True
if isinstance(venv, VirtualEnv) and venv.venv_backend == "uv":
cmd = ["uv", "pip", "install"]
else:
cmd = ["python", "-m", "pip", "install"]
self._run(
*cmd,
*args,
env=env,
include_outer_env=include_outer_env,
external="error",
silent=silent,
success_codes=success_codes,
log=log,
stdout=stdout,
stderr=stderr,
interrupt_timeout=interrupt_timeout,
terminate_timeout=terminate_timeout,
)
def notify(
self,
target: str | SessionRunner,
posargs: Iterable[str] | None = None,
) -> None:
"""Place the given session at the end of the queue.
This method is idempotent; multiple notifications to the same session
have no effect.
A common use case is to notify a code coverage analysis session
from a test session::
@nox.session
def test(session):
session.run("pytest")
session.notify("coverage")
@nox.session
def coverage(session):
session.run("coverage")
Now if you run `nox -s test`, the coverage session will run afterwards.
Args:
target (Union[str, Callable]): The session to be notified. This
may be specified as the appropriate string (same as used for
``nox -s``) or using the function object.
posargs (Optional[Iterable[str]]): If given, sets the positional
arguments *only* for the queued session. Otherwise, the
standard globally available positional arguments will be
used instead.
"""
if posargs is not None:
posargs = list(posargs)
self._runner.manifest.notify(target, posargs)
def log(self, *args: Any, **kwargs: Any) -> None:
"""Outputs a log during the session."""
logger.info(*args, **kwargs)
def warn(self, *args: Any, **kwargs: Any) -> None:
"""Outputs a warning during the session."""
logger.warning(*args, **kwargs)
def debug(self, *args: Any, **kwargs: Any) -> None:
"""Outputs a debug-level message during the session."""
logger.debug(*args, **kwargs)
def error(self, *args: Any) -> NoReturn:
"""Immediately aborts the session and optionally logs an error."""
raise _SessionQuit(*args)
def skip(self, *args: Any) -> NoReturn:
"""Immediately skips the session and optionally logs a warning."""
raise _SessionSkip(*args)
class SessionRunner:
def __init__(
self,
name: str,
signatures: Sequence[str],
func: Func,
global_config: argparse.Namespace,
manifest: Manifest,
) -> None:
self.name = name
self.signatures = signatures
self.func = func
self.global_config = global_config
self.manifest = manifest
self.venv: ProcessEnv | None = None
self.posargs: list[str] = global_config.posargs[:]
@property
def description(self) -> str | None:
doc = self.func.__doc__
if doc:
first_line = doc.strip().split("\n")[0]
return first_line
return None
def __str__(self) -> str:
sigs = ", ".join(self.signatures)
return f"Session(name={self.name}, signatures={sigs})"
@property
def friendly_name(self) -> str:
return self.signatures[0] if self.signatures else self.name
@property
def tags(self) -> list[str]:
return self.func.tags
@property
def envdir(self) -> str:
return _normalize_path(self.global_config.envdir, self.friendly_name)
def _create_venv(self) -> None:
reuse_existing = self.reuse_existing_venv()
backends = (
self.global_config.force_venv_backend
or self.func.venv_backend
or self.global_config.default_venv_backend
or "virtualenv"
).split("|")
# Support fallback backends
for bk in backends:
if bk not in nox.virtualenv.ALL_VENVS:
msg = f"Expected venv_backend one of {list(nox.virtualenv.ALL_VENVS)!r}, but got {bk!r}."
raise ValueError(msg)
for bk in backends[:-1]:
if bk not in nox.virtualenv.OPTIONAL_VENVS:
msg = f"Only optional backends ({list(nox.virtualenv.OPTIONAL_VENVS)!r}) may have a fallback, {bk!r} is not optional."
raise ValueError(msg)
for bk in backends:
if nox.virtualenv.OPTIONAL_VENVS.get(bk, True):
backend = bk
break
else:
msg = f"No backends present, looked for {backends!r}."
raise ValueError(msg)
if backend == "none" or self.func.python is False:
self.venv = nox.virtualenv.ALL_VENVS["none"]()
else:
self.venv = nox.virtualenv.ALL_VENVS[backend](
self.envdir,
interpreter=self.func.python,
reuse_existing=reuse_existing,
venv_params=self.func.venv_params,
)
self.venv.create()
def reuse_existing_venv(self) -> bool:
"""
Determines whether to reuse an existing virtual environment.
The decision matrix is as follows:
+--------------------------+-----------------+-------------+
| global_config.reuse_venv | func.reuse_venv | Reuse venv? |
+==========================+=================+=============+
| "always" | N/A | Yes |
+--------------------------+-----------------+-------------+
| "never" | N/A | No |
+--------------------------+-----------------+-------------+
| "yes" | True|None | Yes |
+--------------------------+-----------------+-------------+
| "yes" | False | No |
+--------------------------+-----------------+-------------+
| "no" | True | Yes |
+--------------------------+-----------------+-------------+
| "no" | False|None | No |
+--------------------------+-----------------+-------------+
Summary
~~~~~~~
- "always" forces reuse regardless of `func.reuse_venv`.
- "never" forces recreation regardless of `func.reuse_venv`.
- "yes" and "no" respect `func.reuse_venv` being ``False`` or ``True`` respectively.
Returns:
bool: True if the existing virtual environment should be reused, False otherwise.
"""
return any(
(
# "always" forces reuse regardless of func.reuse_venv
self.global_config.reuse_venv == "always",
# Respect func.reuse_venv when it's explicitly True, unless global_config is "never"
self.func.reuse_venv is True
and self.global_config.reuse_venv != "never",
# Delegate to reuse ("yes") when func.reuse_venv is not explicitly False
self.func.reuse_venv is not False
and self.global_config.reuse_venv == "yes",
)
)
def execute(self) -> Result:
logger.warning(f"Running session {self.friendly_name}")
try:
cwd = os.path.realpath(os.path.dirname(self.global_config.noxfile))
with _chdir(cwd):
self._create_venv()
session = Session(self)
session.env["NOX_CURRENT_SESSION"] = session.name
self.func(session)
# Nothing went wrong; return a success.
return Result(self, Status.SUCCESS)
except nox.virtualenv.InterpreterNotFound as exc:
if self.global_config.error_on_missing_interpreters:
return Result(self, Status.FAILED, reason=str(exc))
else:
logger.warning(
"Missing interpreters will error by default on CI systems."
)
return Result(self, Status.SKIPPED, reason=str(exc))
except _SessionQuit as exc:
return Result(self, Status.ABORTED, reason=str(exc))
except _SessionSkip as exc:
return Result(self, Status.SKIPPED, reason=str(exc))
except nox.command.CommandFailed:
return Result(self, Status.FAILED)
except KeyboardInterrupt:
logger.error(f"Session {self.friendly_name} interrupted.")
raise
except Exception as exc:
logger.exception(f"Session {self.friendly_name} raised exception {exc!r}")
return Result(self, Status.FAILED)
class Result:
"""An object representing the result of a session."""
def __init__(
self, session: SessionRunner, status: Status, reason: str | None = None
) -> None:
"""Initialize the Result object.
Args:
session (~nox.sessions.SessionRunner):
The session runner which ran.
status (~nox.sessions.Status): The final result status.
reason (str): Additional info.
"""
self.session = session
self.status = status
self.reason = reason
def __bool__(self) -> bool:
return self.status.value > 0
def __nonzero__(self) -> bool:
return self.__bool__()
@property
def imperfect(self) -> str:
"""Return the English imperfect tense for the status.
Returns:
str: A word or phrase representing the status.
"""
if self.status == Status.SUCCESS:
return "was successful"
status = self.status.name.lower()
if self.reason:
return f"{status}: {self.reason}"
return status
def log(self, message: str) -> None:
"""Log a message using the appropriate log function.
Args:
message (str): The message to be logged.
"""
log_function = logger.info
if self.status == Status.SUCCESS:
log_function = logger.success
if self.status == Status.SKIPPED:
log_function = logger.warning
if self.status.value <= 0:
log_function = logger.error
log_function(message)
def serialize(self) -> dict[str, Any]:
"""Return a serialized representation of this result.
Returns:
dict: The serialized result.
"""
return {
"args": getattr(self.session.func, "call_spec", {}),
"name": self.session.name,
"result": self.status.name.lower(),
"result_code": self.status.value,
"signatures": self.session.signatures,
}
|