forked from josch/mmdebstrap
coverage.sh: skip prio:standard test because python is priority:standard but uninstallable since August 03 2020, see Debian bug #968217
This commit is contained in:
parent
d9153818f4
commit
7ec0e1b4e1
1 changed files with 6 additions and 1 deletions
|
@ -72,7 +72,7 @@ if [ ! -e shared/taridshift ] || [ taridshift -nt shared/taridshift ]; then
|
|||
fi
|
||||
|
||||
starttime=
|
||||
total=148
|
||||
total=147
|
||||
skipped=0
|
||||
runtests=0
|
||||
i=1
|
||||
|
@ -2375,6 +2375,11 @@ done
|
|||
# test all variants
|
||||
|
||||
for variant in essential apt required minbase buildd important debootstrap - standard; do
|
||||
if [ "$variant" = standard ]; then
|
||||
# python is priority:standard but uninstallable since August 03
|
||||
# 2020, see Debian bug #968217
|
||||
continue
|
||||
fi
|
||||
print_header "mode=root,variant=$variant: create tarball"
|
||||
cat << END > shared/test.sh
|
||||
#!/bin/sh
|
||||
|
|
Loading…
Reference in a new issue