From 00405f9caf5062eff6ab2182eccd4251064235b4 Mon Sep 17 00:00:00 2001 From: Jukka Aho Date: Thu, 9 Jul 2015 21:21:40 +0300 Subject: [PATCH] the idea in general, is to dump all message output to buildbot and after that parse all relevant information from that to provide status updates not to hook and generate intermediate messages which are not going through buildbot. --- docs/build_doctests.jl | 4 ---- 1 file changed, 4 deletions(-) diff --git a/docs/build_doctests.jl b/docs/build_doctests.jl index e777621..9728a7d 100644 --- a/docs/build_doctests.jl +++ b/docs/build_doctests.jl @@ -39,17 +39,13 @@ cd(dirname(@__FILE__)) do nfailed = 0 nskipped = 0 - #fid = open("./quality/doctests_report.rst", "w") for m in modules s = doctest(m) - #writemime(fid, "text/plain", s) - # local stats for this module lnpassed, lnfailed, lnskipped = map(length, (passed(s), failed(s), skipped(s))) npassed += lnpassed nfailed += lnfailed nskipped += lnskipped end - #close(fid) make_badge("doctests", npassed, (npassed+nfailed+nskipped), "badges/doctests-status.svg") end