tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

setup.cfg (377B)


      1 [tool:pytest]
      2 testpaths = test
      3 
      4 [coverage:run]
      5 branch = True
      6 source = h2
      7 
      8 [coverage:report]
      9 fail_under = 100
     10 show_missing = True
     11 exclude_lines =
     12    pragma: no cover
     13    assert False, "Should not be reachable"
     14    .*:.* # Python \d.*
     15    .*:.* # Platform-specific:
     16 
     17 [coverage:paths]
     18 source =
     19    src
     20    .tox/*/site-packages
     21 
     22 [flake8]
     23 max-line-length = 120
     24 max-complexity = 10