This is an automated email from the ASF dual-hosted git repository. cstamas pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/maven-mvnd.git
The following commit(s) were added to refs/heads/master by this push: new b4de1b1a Disable ConcurrentDownloadsTest for now (#1293) b4de1b1a is described below commit b4de1b1a236680dd54bec5d29380cc107b891e30 Author: Tamas Cservenak <ta...@cservenak.net> AuthorDate: Thu Mar 13 15:10:01 2025 +0100 Disable ConcurrentDownloadsTest for now (#1293) As due Mimir, it does not download anymore and assertion fails. With Mimir primed caches, everything is got from cache. --- .../src/test/java/org/mvndaemon/mvnd/it/ConcurrentDownloadsTest.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/integration-tests/src/test/java/org/mvndaemon/mvnd/it/ConcurrentDownloadsTest.java b/integration-tests/src/test/java/org/mvndaemon/mvnd/it/ConcurrentDownloadsTest.java index bdecd66a..d4b9bb66 100644 --- a/integration-tests/src/test/java/org/mvndaemon/mvnd/it/ConcurrentDownloadsTest.java +++ b/integration-tests/src/test/java/org/mvndaemon/mvnd/it/ConcurrentDownloadsTest.java @@ -22,6 +22,7 @@ import javax.inject.Inject; import java.io.IOException; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import org.mvndaemon.mvnd.assertj.TestClientOutput; import org.mvndaemon.mvnd.client.Client; @@ -32,6 +33,7 @@ import org.mvndaemon.mvnd.junit.TestParameters; import static org.junit.jupiter.api.Assertions.assertTrue; +@Disabled("Due use of Mimir in ITs this test does not download but gets from Mimir cache instead") @MvndTest(projectDir = "src/test/projects/concurrent-downloads") class ConcurrentDownloadsTest {