<html>
  <head>
    <meta content="text/html; charset=windows-1252"
      http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    <p>You can use environment variables in the .coveragerc file, so you
      can create a pattern for pragmas that uses environmental data. 
      For example:
      <a class="moz-txt-link-freetext" href="https://github.com/habnabit/ebb-lint/blob/master/.coveragerc">https://github.com/habnabit/ebb-lint/blob/master/.coveragerc</a> :<br>
    </p>
    <blockquote>
      <p><tt>[report]</tt><tt><br>
        </tt><tt>exclude_lines =</tt><tt><br>
        </tt><tt>    pragma: no ${TOX_ENVNAME}</tt><tt><br>
        </tt><tt>    pragma: no ?cover</tt><br>
      </p>
    </blockquote>
    <p>--Ned.<br>
    </p>
    <p><br>
    </p>
    <p>
      <meta http-equiv="content-type" content="text/html;
        charset=windows-1252">
    </p>
    <div class="moz-cite-prefix">On 7/26/16 6:33 PM, André Caron wrote:<br>
    </div>
    <blockquote
cite="mid:CALKBF2iXP+4wV+WfckeH4x7ksAqueeqwLiY3i3ndht4aHWbG_A@mail.gmail.com"
      type="cite">
      <div dir="ltr">Hi all,
        <div><br>
        </div>
        <div>I have some code base that has platform-specific code,
          mostly related to how to handle SIGINT and CTRL-C for which I
          like to use `coverage report --fail-under=100`.  Problem is
          that some code only runs on one OS, so coverage is always
          partial in those cases and it's not so straightforward.</div>
        <div><br>
        </div>
        <div>I've used Coveralls for some open source projects and their
          solution AFAICT seems to be to collect the `.coverage` files
          in a central location and then combine the coverage files,
          after which you can run the actual reporting.</div>
        <div><br>
        </div>
        <div>However, I'm not in a position to use Coveralls for this
          project and integrating a distributed coverage combine is not
          viable in the short/medium term.</div>
        <div><br>
        </div>
        <div>I'm looking for suggestions on a quick and dirty way to
          solve this.</div>
        <div><br>
        </div>
        <div>One thing I thought of was using coverage's `exclude_lines`
          option [1] with a platform specific token to get this:</div>
        <div><br>
        </div>
        <blockquote style="margin:0 0 0 40px;border:none;padding:0px">
          <div>if sys.platform == 'win32':  # pragma: cover win32</div>
        </blockquote>
        <div><br>
        </div>
        <div>I guess this works, but it requires that I have a
          platform-specific configuration file (e.g. via duplicatation
          or generation from a template).</div>
        <div><br>
        </div>
        <div>Anybody have any better ideas?</div>
        <div><br>
          Thanks,</div>
        <div><br>
        </div>
        <div>André</div>
        <div><br>
        </div>
        <div>[1]: <a moz-do-not-send="true"
href="https://coverage.readthedocs.io/en/coverage-4.1/excluding.html#advanced-exclusion">https://coverage.readthedocs.io/en/coverage-4.1/excluding.html#advanced-exclusion</a></div>
      </div>
      <br>
      <fieldset class="mimeAttachmentHeader"></fieldset>
      <br>
      <pre wrap="">_______________________________________________
testing-in-python mailing list
<a class="moz-txt-link-abbreviated" href="mailto:testing-in-python@lists.idyll.org">testing-in-python@lists.idyll.org</a>
<a class="moz-txt-link-freetext" href="http://lists.idyll.org/listinfo/testing-in-python">http://lists.idyll.org/listinfo/testing-in-python</a>
</pre>
    </blockquote>
    <br>
  </body>
</html>