Codebase list anosql / 9eb179c5-f5d9-4db1-a811-45f98c1b315d/main tox.ini
9eb179c5-f5d9-4db1-a811-45f98c1b315d/main

Tree @9eb179c5-f5d9-4db1-a811-45f98c1b315d/main (Download .tar.gz)

tox.ini @9eb179c5-f5d9-4db1-a811-45f98c1b315d/mainraw · 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