diff options
author | Jakub Jirutka <jakub@jirutka.cz> | 2018-07-29 16:21:29 +0200 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2018-07-29 16:21:29 +0200 |
commit | 1820691b9483e311ecc11cf9576a7ed46337f10b (patch) | |
tree | 39283e230c2f857398194e8fbeaf6e8a1d17a716 /newapkbuild.in | |
parent | 07b6609d745dfffd009f76fc93599e8960d54fbb (diff) | |
download | abuild-1820691b9483e311ecc11cf9576a7ed46337f10b.tar.gz abuild-1820691b9483e311ecc11cf9576a7ed46337f10b.tar.bz2 abuild-1820691b9483e311ecc11cf9576a7ed46337f10b.tar.xz abuild-1820691b9483e311ecc11cf9576a7ed46337f10b.zip |
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`.
Diffstat (limited to 'newapkbuild.in')
-rw-r--r-- | newapkbuild.in | 2 |
1 files changed, 1 insertions, 1 deletions
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__ } |