diff options
author | 2020-09-27 14:14:33 +0000 | |
---|---|---|
committer | 2020-09-27 14:14:33 +0000 | |
commit | bcd1a9714437aeaa6fb310cd190e6b4d924560af (patch) | |
tree | 0d54aadda441ff16db8bc48adb22e71d77d100a3 | |
parent | dev-python/rply: Enable up to py3.9 (diff) | |
download | gentoo-bcd1a9714437aeaa6fb310cd190e6b4d924560af.tar.gz gentoo-bcd1a9714437aeaa6fb310cd190e6b4d924560af.tar.bz2 gentoo-bcd1a9714437aeaa6fb310cd190e6b4d924560af.zip |
dev-db/mongodb: fix running tests
Closes: https://bugs.gentoo.org/729858
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Sam James <sam@gentoo.org>
-rw-r--r-- | dev-db/mongodb/mongodb-4.2.8.ebuild | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/dev-db/mongodb/mongodb-4.2.8.ebuild b/dev-db/mongodb/mongodb-4.2.8.ebuild index b88bcf9c846f..d304a761f6da 100644 --- a/dev-db/mongodb/mongodb-4.2.8.ebuild +++ b/dev-db/mongodb/mongodb-4.2.8.ebuild @@ -134,7 +134,8 @@ src_compile() { # FEATURES="test -usersandbox" emerge dev-db/mongodb src_test() { - "${EPYTHON}" ./buildscripts/resmoke.py --dbpathPrefix=test --suites core --jobs=$(makeopts_jobs) || die "Tests failed" + ewarn "Tests may hang with FEATURES=usersandbox" + "${EPYTHON}" ./buildscripts/resmoke.py run --dbpathPrefix=test --suites core --jobs=$(makeopts_jobs) || die "Tests failed with ${EPYTHON}" } src_install() { |