blob: 43e09de8ff3842919555f92e543602b97ac5e324 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# disable Bonjour testing on build slaves
eval "$(
declare -f check | \
sed '
s/.*setup.py test/CI=true &/g
'
)"
# ignore checksum
sha256sums[0]='SKIP'
# disabled testing, too many Python stuff currently broken
unset check
unset checkdepends
|