commit: 47078a9e7a11e3584661d49f4a43bf9f8e509026 Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in> AuthorDate: Thu Nov 21 06:00:23 2024 +0000 Commit: David Roman <davidroman96 <AT> gmail <DOT> com> CommitDate: Thu Nov 21 06:00:23 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=47078a9e
dev-crystal/http_proxy: fix test deps Bug: https://bugs.gentoo.org/943509 Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in> dev-crystal/http_proxy/http_proxy-0.12.0.ebuild | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/dev-crystal/http_proxy/http_proxy-0.12.0.ebuild b/dev-crystal/http_proxy/http_proxy-0.12.0.ebuild index 6db13a433..4ed45232e 100644 --- a/dev-crystal/http_proxy/http_proxy-0.12.0.ebuild +++ b/dev-crystal/http_proxy/http_proxy-0.12.0.ebuild @@ -17,12 +17,13 @@ RESTRICT="!test? ( test )" DOCS=( {CHANGELOG,README}.md ) -RDEPEND=" - test? ( dev-crystal/http_proxy ) +DEPEND=" + test? ( dev-crystal/webmock ) " src_test() { - # Only run tests that don't need net + # Only run tests that don't need net. + # Upstream issue: https://github.com/mamantoha/http_proxy/issues/38 crystal_spec \ "${S}"/spec/client_spec.cr:5 \ "${S}"/spec/client_spec.cr:13 \
