* chore: improve mypy Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com> * chore(types): type functions in tests Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com> * chore(types): No partial types in tests Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com> --------- Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>
19 lines
552 B
Python
19 lines
552 B
Python
from __future__ import annotations
|
|
|
|
import os
|
|
import subprocess
|
|
import sysconfig
|
|
from typing import Any
|
|
|
|
|
|
def define_env(env: Any) -> None:
|
|
"Hook function for mkdocs-macros"
|
|
|
|
@env.macro # type: ignore[misc]
|
|
def subprocess_run(*args: str) -> str:
|
|
"Run a subprocess and return the stdout"
|
|
env = os.environ.copy()
|
|
scripts = sysconfig.get_path("scripts")
|
|
env["PATH"] = f"{scripts}{os.pathsep}{env.get('PATH', '')}"
|
|
return subprocess.run(args, check=True, capture_output=True, text=True, env=env).stdout
|