testing/py-cpuinfo: enable tests

This commit is contained in:
Fabian Affolter 2017-06-10 19:49:59 +00:00 committed by Natanael Copa
parent edda377c6b
commit 8aeff6983a

View File

@ -15,8 +15,14 @@ builddir="$srcdir"/$pkgname-$pkgver
build() {
cd "$builddir"
python2 setup.py build || return 1
python3 setup.py build || return 1
python2 setup.py build
python3 setup.py build
}
check() {
cd "$builddir"
python2 setup.py test
python3 setup.py test
}
package() {