Docker: Do not flag slow tests in minimal build

This commit is contained in:
Ole Schütt 2023-01-22 15:26:38 +01:00 committed by Ole Schütt
parent ae35d1c90b
commit 1a8a8ac7cf

View file

@ -34,7 +34,7 @@ if [[ "${ARCH}" == *cuda* ]] || [[ "${ARCH}" == *hip* ]]; then
fi
# Flag slow tests in debug runs.
if [[ "${VERSION}" == *dbg* ]]; then
if [[ "${ARCH}" == "local" ]] && [[ "${VERSION}" == *dbg* ]]; then
TESTOPTS="--flagslow ${TESTOPTS}"
fi