python-attrs: disable python2 tests

This commit is contained in:
Michal Vasilek 2022-09-25 14:51:57 +02:00 committed by classabbyamp
parent d80fdd8d55
commit 4b714d056d

View file

@ -6,8 +6,7 @@ wrksrc="attrs-${version}"
build_style=python-module
hostmakedepends="python-setuptools python3-setuptools"
depends="python"
checkdepends="python-hypothesis python3-hypothesis python-pytest
python3-pytest python-zope.interface python3-zope.interface python3-six"
checkdepends="python3-pytest python3-zope.interface python3-six python3-hypothesis"
short_desc="Attributes without boilerplate (Python2)"
maintainer="Alessio Sergi <al3hex@gmail.com>"
license="MIT"
@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/a/attrs/attrs-${version}.tar.gz"
checksum=ef6aaac3ca6cd92904cdd0d83f629a15f18053ec84e6432106f7a4d04ae4f5fb
do_check() {
PYTHONPATH="$(cd build-2.7/lib* && pwd)" python2 -m pytest
PYTHONPATH="$(cd build-${py3_ver}/lib* && pwd)" python3 -m pytest
}