From e78da41f3719563fce5e712e5b24299f5bf60b73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mos=C3=A8=20Giordano?= Date: Sat, 11 Oct 2025 15:14:27 +0100 Subject: [PATCH] Add list of testimonals in README to inspire other users --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 128db70..fd22a31 100644 --- a/README.md +++ b/README.md @@ -62,5 +62,12 @@ end runtests(ARGS; init_code) ``` +## Packages using ParallelTestRunner.jl + +There are a few packages already using `ParallelTestRunner.jl` to parallelize their tests, you can look at their setups if you need inspiration to move your packages as well: + +* [`Enzyme.jl`](https://github.com/EnzymeAD/Enzyme.jl/blob/main/test/runtests.jl) +* [`GPUCompiler.jl`](https://github.com/JuliaGPU/GPUCompiler.jl/blob/master/test/runtests.jl) + ## Inspiration Based on [@maleadt](https://github.com/maleadt) test infrastructure for [CUDA.jl](https://github.com/JuliaGPU/CUDA.jl).