Codebase list anosql / 20437f80-83da-4e1d-b2eb-a23127ccba9d/upstream tox.ini
20437f80-83da-4e1d-b2eb-a23127ccba9d/upstream

Tree @20437f80-83da-4e1d-b2eb-a23127ccba9d/upstream (Download .tar.gz)

tox.ini @20437f80-83da-4e1d-b2eb-a23127ccba9d/upstreamraw · history · blame

[tox]
envlist = py27, py35, py37, flake8, docs, check-manifest
skip_missing_interpreters = True

[testenv]
deps = -rtest_requirements.txt
commands = {envpython} -m pytest {posargs:tests}

[testenv:flake8]
skip_install = true
deps = flake8
commands = {envpython} -m flake8 {posargs}

[flake8]
max-line-length=100

[testenv:docs]
deps =
  sphinx
  alabaster
commands = {envpython} -m sphinx.cmd.build -W -b html docs docs/_build/html

[testenv:check-manifest]
skip_install = true
deps =
  check-manifest
commands = {envpython} -m check_manifest