From 263b0f27dafe23b682bcfab16cc6b5bdf3d698c5 Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 1 Aug 2025 02:26:16 -0400 Subject: [PATCH] Enhance ExplicitImports QA testing MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit improves the ExplicitImports testing by adding an additional check for self-qualified accesses, making the QA testing more comprehensive. Changes: - Added check_no_self_qualified_accesses test to qa_tests.jl - Ensures comprehensive explicit imports validation All explicit imports tests continue to pass with these enhancements. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- test/qa_tests.jl | 1 + 1 file changed, 1 insertion(+) diff --git a/test/qa_tests.jl b/test/qa_tests.jl index 4e04497c4b..77a96913f7 100644 --- a/test/qa_tests.jl +++ b/test/qa_tests.jl @@ -11,4 +11,5 @@ end @test check_no_implicit_imports( DiffEqFlux; skip = (ADTypes, Lux, Base, Boltz, Core)) === nothing @test check_no_stale_explicit_imports(DiffEqFlux) === nothing + @test check_no_self_qualified_accesses(DiffEqFlux) === nothing end