dev-python/jsonpickle: Run tests via pytest

Closes: https://bugs.gentoo.org/723592
Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2020-05-19 14:47:23 +02:00
parent 14610ec4f5
commit e4ecc6474b

View File

@@ -30,18 +30,18 @@ BDEPEND="
dev-python/toml[${PYTHON_USEDEP}]"
distutils_enable_sphinx "docs/source"
distutils_enable_tests pytest
python_prepare_all() {
# too many dependencies
rm tests/pandas_test.py || die
sed -e '/pandas/ d' -i tests/runtests.py || die
sed -i -e 's:--flake8 --black --cov --cov-append::' pytest.ini || die
distutils-r1_python_prepare_all
}
python_test() {
# An apparent regression in tests
# https://github.com/jsonpickle/jsonpickle/issues/124
einfo "testsuite has optional tests for package demjson"
"${EPYTHON}" tests/runtests.py || die "tests failed with ${EPYTHON}"
pytest -vv tests || die "Tests failed with ${EPYTHON}"
}