We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a76223 commit 062c7f1Copy full SHA for 062c7f1
1 file changed
test/runtests.jl
@@ -802,4 +802,13 @@ end
802
@test contains(str, "SUCCESS")
803
end
804
805
+# This testset should always be the last one, don't add anything after this.
806
+# We want to make sure there are no running workers at the end of the tests.
807
+@testset "no workers running" begin
808
+ children = _count_child_pids()
809
+ if children >= 0
810
+ @test children == 0
811
+ end
812
+end
813
+
814
0 commit comments