From 1820691b9483e311ecc11cf9576a7ed46337f10b Mon Sep 17 00:00:00 2001 From: Jakub Jirutka Date: Sun, 29 Jul 2018 16:21:29 +0200 Subject: 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`. --- newapkbuild.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'newapkbuild.in') diff --git a/newapkbuild.in b/newapkbuild.in index b84dd6d..b2712d5 100644 --- a/newapkbuild.in +++ b/newapkbuild.in @@ -112,7 +112,7 @@ __EOF__ check_python() { cat >>APKBUILD<<__EOF__ - python3 setup.py check + python3 setup.py test __EOF__ } -- cgit v1.2.3