tor-browser

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

tox.ini (424B)


      1 [tox]
      2 envlist = py{27,35,36,37,38,py,py3}-{base,six19,optional}
      3 
      4 [testenv]
      5 deps =
      6  optional: -r{toxinidir}/requirements-optional.txt
      7  -r{toxinidir}/requirements-test.txt
      8  doc: Sphinx
      9 
     10 passenv =
     11  PYTEST_COMMAND
     12  COVERAGE_RUN_OPTIONS
     13 commands =
     14  six19: pip install six==1.9
     15  {env:PYTEST_COMMAND:{envbindir}/py.test} {posargs}
     16  flake8 {toxinidir}
     17 
     18 [testenv:doc]
     19 changedir = doc
     20 commands = sphinx-build -b html . _build