From 5d64885e47bce217cc7382e22b65bad5609340dd Mon Sep 17 00:00:00 2001 From: Peter Hill Date: Tue, 2 Apr 2024 16:54:49 +0100 Subject: [PATCH] Tests: Workaround massive slowdown when building stdlib docs --- test/test_corpus.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/test/test_corpus.py b/test/test_corpus.py index be5aa2df..0a3ea5dd 100644 --- a/test/test_corpus.py +++ b/test/test_corpus.py @@ -29,7 +29,12 @@ ), ("https://github.com/fortran-lang/fftpack", "fftpack/API-doc-FORD-file.md", ""), ("https://github.com/fortran-lang/fpm", "fpm/docs.md", ""), - ("https://github.com/fortran-lang/stdlib", "stdlib/API-doc-FORD-file.md", ""), + ( + "https://github.com/fortran-lang/stdlib", + "stdlib/API-doc-FORD-file.md", + # The linear algebra files cause massive slowdown, although I'm not sure why yet + '--config=exclude=["**/*linalg**"]', + ), ( "https://github.com/jacobwilliams/Fortran-Astrodynamics-Toolkit", "Fortran-Astrodynamics-Toolkit/ford.md",