Merge staging-next into staging

This commit is contained in:
nixpkgs-ci[bot]
2026-02-23 18:22:42 +00:00
committed by GitHub
214 changed files with 2245 additions and 1747 deletions

View File

@@ -442,6 +442,17 @@ in
} ./setuptools-build-hook.sh
) { };
stestrCheckHook = callPackage (
{ makePythonHook }:
makePythonHook {
name = "stestr-check-hook";
propagatedBuildInputs = [ stestr ];
substitutions = {
inherit pythonCheckInterpreter;
};
} ./stestr-check-hook.sh
) { };
unittestCheckHook = callPackage (
{ makePythonHook }:
makePythonHook {

View File

@@ -0,0 +1,39 @@
# Setup hook for stestr
# shellcheck shell=bash
echo "Sourcing stestr-check-hook"
function stestrCheckPhase() {
echo "Executing stestrCheckPhase"
runHook preCheck
local -a patterns=()
# Append regex pattern
read -ra patterns <<< "$disabledTestsRegex"
# Sanitize disabledTests options
if [[ -n "${disabledTests[*]-}" ]] || [[ -n "${disabledTestsRegex[*]-}" ]]; then
# Prevent unintentional matching for specific tests
for test in ${disabledTests[@]-}; do
patterns+=("^${test}$")
done
fi
# Compose arguments
local -a flagsArray=()
if [[ -n "${patterns[*]}" ]]; then
flagsArray+=(--exclude-regex "($(concatStringsSep "|" patterns))")
fi
echoCmd 'stestr flags' "${flagsArray[@]}"
@pythonCheckInterpreter@ -m stestr run "${flagsArray[@]}"
runHook postCheck
echo "Finished executing stestrCheckPhase"
}
if [ -z "${dontUseStestrCheck-}" ] && [ -z "${installCheckPhase-}" ]; then
echo "Using stestrCheckPhase"
appendToVar preDistPhases stestrCheckPhase
fi