6bc5671491
Apply: git diff --full-index --binary anaconda-23.19.10-1..anaconda-25.20.9-1 And resolve conflicts. QubesOS/qubes-issues#2574
17 lines
536 B
Bash
Executable File
17 lines
536 B
Bash
Executable File
#!/bin/bash
|
|
|
|
srcdir=${srcdir:=$(dirname "$0")}
|
|
COVERAGE_PROCESS_START=${COVERAGE_PROCESS_START:=${srcdir}/../.coveragerc}
|
|
|
|
if ! rpm -q python3-nose-testconfig &> /dev/null; then
|
|
echo "python3-nose-testconfig is not available; exiting."
|
|
exit 99
|
|
fi
|
|
|
|
export LC_ALL=C # translations confuse Dogtail
|
|
|
|
COVERAGE_PROCESS_START=${COVERAGE_PROCESS_START} exec \
|
|
${srcdir}/nosetests.sh -s --nologcapture --process-timeout 1200 \
|
|
--tc=resultsdir:$(readlink -f autogui-results-$(date +"%Y%m%d_%H%M%S")) \
|
|
${srcdir}/gui/test_*.py
|