newapkbuild: fix default check function for python3

`setup.py check` does not run package tests, it performs just some check
of the package metadata. The correct command is `setup.py test`.
This commit is contained in:
Jakub Jirutka 2018-07-29 16:21:29 +02:00
parent 07b6609d74
commit 1820691b94
1 changed files with 1 additions and 1 deletions

View File

@ -112,7 +112,7 @@ __EOF__
check_python() {
cat >>APKBUILD<<__EOF__
python3 setup.py check
python3 setup.py test
__EOF__
}