ranger: fix ./xbps-src check
- Correct pytest dependencies - Stop checking their code styles, it's not our business
This commit is contained in:
parent
a57d4db2fe
commit
8cce782d41
1 changed files with 5 additions and 2 deletions
|
@ -8,7 +8,7 @@ pycompile_module="ranger"
|
||||||
hostmakedepends="python3"
|
hostmakedepends="python3"
|
||||||
makedepends="python3-devel"
|
makedepends="python3-devel"
|
||||||
depends="python3"
|
depends="python3"
|
||||||
checkdepends="python-pytest pylint flake8 ncurses-term"
|
checkdepends="python3-pytest flake8 ncurses-term"
|
||||||
short_desc="File manager with an ncurses frontend written in Python"
|
short_desc="File manager with an ncurses frontend written in Python"
|
||||||
maintainer="Orphaned <orphan@voidlinux.org>"
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
||||||
license="GPL-3.0-only"
|
license="GPL-3.0-only"
|
||||||
|
@ -17,5 +17,8 @@ distfiles="${homepage}/${pkgname}-${version}.tar.gz"
|
||||||
checksum=0e1d1b1d3f78c227a6cfa783822e98591ca76a35c643d4814f40f73515d66b8a
|
checksum=0e1d1b1d3f78c227a6cfa783822e98591ca76a35c643d4814f40f73515d66b8a
|
||||||
|
|
||||||
do_check() {
|
do_check() {
|
||||||
TERM=linux TERMINFO=/usr/share/terminfo make test
|
# test_pylint is failing,
|
||||||
|
# As a distro, we don't want to check their code style
|
||||||
|
TERM=linux TERMINFO=/usr/share/terminfo \
|
||||||
|
make test_flake8 test_doctest test_pytest test_other
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue