tor-browser

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

tox.ini (387B)


      1 [tox]
      2 downloadcache = {toxworkdir}/cache/
      3 envlist = py36,flake8
      4 
      5 [testenv]
      6 passenv = TRAVIS TRAVIS_JOB_ID TRAVIS_BRANCH
      7 deps = -rrequirements/tox.txt
      8 commands =
      9       pytest --random-order-bucket=global -sv --cov-report= --cov-config .coveragerc --cov condprof condprof/tests
     10       - coverage report -m
     11       - coveralls
     12 
     13 [testenv:flake8]
     14 commands = flake8 condprof
     15 deps =
     16    flake8