diff --git a/dev-python/fslpy/fslpy-1.13.3.ebuild b/dev-python/fslpy/fslpy-1.13.3.ebuild index 2561597..c544885 100644 --- a/dev-python/fslpy/fslpy-1.13.3.ebuild +++ b/dev-python/fslpy/fslpy-1.13.3.ebuild @@ -35,17 +35,17 @@ RDEPEND=" # https://github.com/pauldmccarthy/fslpy/issues/3 #RESTRICT="test" -python_prepare_all() { - if use test; then - # Reported upstream - # https://github.com/pauldmccarthy/fslpy/issues/3 - #sed -i -e \ - # "/def test_loadVestLutFile():/i@pytest.mark.xfail(reason='Known to fail on Gentoo')" \ - # tests/test_vest.py || die - rm tests/test_vest.py - fi - distutils-r1_python_prepare_all -} +#python_prepare_all() { +# if use test; then +# # Reported upstream +# # https://github.com/pauldmccarthy/fslpy/issues/3 +# #sed -i -e \ +# # "/def test_loadVestLutFile():/i@pytest.mark.xfail(reason='Known to fail on Gentoo')" \ +# # tests/test_vest.py || die +# #rm tests/test_vest.py +# fi +# distutils-r1_python_prepare_all +#} python_test() { virtx pytest -m "not (dicomtest or fsltest)" --verbose || die diff --git a/sci-libs/pybids/pybids-0.6.5.ebuild b/sci-libs/pybids/pybids-0.6.5.ebuild index 07367c6..e98eb2d 100644 --- a/sci-libs/pybids/pybids-0.6.5.ebuild +++ b/sci-libs/pybids/pybids-0.6.5.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -37,8 +37,6 @@ RESTRICT="test" python_test() { rm bids/tests/test_config.py || die distutils_install_for_testing - #cd "${TEST_DIR}" || die "no ${TEST_DIR} available" pytest -vv || die die } - diff --git a/sci-libs/scikits_image/scikits_image-0.14.2.ebuild b/sci-libs/scikits_image/scikits_image-0.14.2.ebuild index 8d38d5d..4535ca7 100644 --- a/sci-libs/scikits_image/scikits_image-0.14.2.ebuild +++ b/sci-libs/scikits_image/scikits_image-0.14.2.ebuild @@ -41,7 +41,7 @@ S="${WORKDIR}/${MYP}" DOCS=( CONTRIBUTORS.txt RELEASE.txt TODO.txt ) # Fails on Gentoo -RESTRICT="test" +#RESTRICT="test" python_prepare_all() { # Remove pip dependency @@ -58,7 +58,10 @@ python_test() { echo "backend : Agg" > matplotlibrc || die #echo "backend.qt4 : PyQt4" >> matplotlibrc || die #echo "backend.qt4 : PySide" >> matplotlibrc || die - pytest -vv || die + mkdir "${WORKDIR}/empty_test_dir" || die + cd "${WORKDIR}/empty_test_dir" || die + pytest --pyargs skimage || die + #pytest -vv || die } pkg_postinst() { diff --git a/sci-visualization/fsleyes/ChangeLog b/sci-visualization/fsleyes/ChangeLog new file mode 100644 index 0000000..a461ea9 --- /dev/null +++ b/sci-visualization/fsleyes/ChangeLog @@ -0,0 +1,2 @@ + 15 Apr 2019; fsleyes-0.27.3.ebuild: + sci-visualization/fsleyes: diff --git a/sci-visualization/fsleyes/fsleyes-0.27.3.ebuild b/sci-visualization/fsleyes/fsleyes-0.27.3.ebuild index 99f1acc..20813a8 100644 --- a/sci-visualization/fsleyes/fsleyes-0.27.3.ebuild +++ b/sci-visualization/fsleyes/fsleyes-0.27.3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -57,7 +57,7 @@ PATCHES=( ) src_prepare() { - sed -i -e "s/Pillow>=3.2.0,<5.0/Pillow>=3.2.0/g" requirements.txt + sed -i -e "s/Pillow>=3.2.0,<6.0/Pillow>=3.2.0/g" requirements.txt distutils-r1_src_prepare }