dev-python/more-itertools: tests: don't load docs/conf.py

docs/conf.py imports sphinx_rtd_theme which isn't guaranteed to be
installed.

Bug: https://bugs.gentoo.org/659002
Package-Manager: Portage-2.3.40, Repoman-2.3.9
This commit is contained in:
Louis Sautier
2018-06-24 20:28:17 +02:00
parent 1ff3eb6ad7
commit 651e80df60

View File

@@ -36,5 +36,6 @@ python_compile_all() {
}
python_test() {
py.test --doctest-modules || die "tests fail with ${EPYTHON}"
py.test --doctest-modules more_itertools \
|| die "tests fail with ${EPYTHON}"
}