-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbindep.py
45 lines (38 loc) · 1.33 KB
/
bindep.py
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
"""Bindep check feature implementations."""
from __future__ import annotations
import logging
import subprocess
import sys
from functools import cache
from typing import TYPE_CHECKING
if TYPE_CHECKING:
from collections.abc import Iterable
from pathlib import Path
logger = logging.getLogger(__name__)
@cache
def check_bindep(path: Path, profiles: Iterable[str] | None = None) -> None:
"""Check bindeps requirements or exit."""
if profiles is None: # pragma: no cover
profiles = []
if (path / "bindep.txt").is_file():
# as 'bindep --profiles' does not show user defined profiles like 'test'
# it makes no sense to list them.
cmd = [sys.executable, "-m", "bindep", "-b", *sorted(profiles)]
result = subprocess.run( # noqa: S603
cmd,
check=False,
text=True,
capture_output=True,
cwd=path,
)
if result.returncode:
msg = (
f"Running '{' '.join(cmd)}' returned {result.returncode}, "
"likely missing system dependencies."
)
if result.stdout:
msg += "\nstdout:\n" + result.stdout
if result.stderr:
msg += "\nstderr:\n" + result.stderr
logger.error(msg)
raise SystemExit(result.returncode)