tox.ini
changeset 12793 752de3f8cb3e
parent 12714 27ea20b1915f
equal deleted inserted replaced
12792:e2cdb1be6bd9 12793:752de3f8cb3e
     1 [tox]
     1 [tox]
     2 envlist =
     2 envlist =
     3   check-manifest,flake8,
     3   check-manifest,flake8,
     4   py3-{server,web,misc}
     4   py3-{server,web,misc},
       
     5   doc8
     5 
     6 
     6 [testenv]
     7 [testenv]
     7 basepython=python3
     8 basepython=python3
     8 deps =
     9 deps =
     9   -r{toxinidir}/requirements/dev.txt
    10   -r{toxinidir}/requirements/dev.txt
    38 deps =
    39 deps =
    39   check-manifest
    40   check-manifest
    40 commands =
    41 commands =
    41   {envpython} -m check_manifest {toxinidir}
    42   {envpython} -m check_manifest {toxinidir}
    42 
    43 
       
    44 [testenv:doc8]
       
    45 skip_install = true
       
    46 commands=
       
    47     doc8 --ignore-path doc/_build --ignore-path .tox --ignore-path .hg doc
       
    48 
    43 [pytest]
    49 [pytest]
    44 python_files = *test_*.py
    50 python_files = *test_*.py
    45 log_print = false
    51 log_print = false
    46 
    52 
    47 [flake8]
    53 [flake8]
    48 format = pylint
    54 format = pylint
    49 ignore = W503
    55 ignore = W503
    50 max-line-length = 100
    56 max-line-length = 100
    51 exclude = doc/*,.tox/*
    57 exclude = doc/*,.tox/*
    52 
    58 
       
    59 [doc8]
       
    60 #max-line-length=199
       
    61 #ignore-path-errors=SOURCES.txt;D005
       
    62 # D000 - Interpreted text role "index" everywhere
       
    63 # D001 - line too long... to much of it right now
       
    64 ignore=D000,D001,D005
       
    65 # FIXME - can't get ignore-path-error to ignore D000, so ignoring files
       
    66 ignore-path=doc/_build
       
    67 extension=.rst
    53 
    68 
    54 # vim: wrap sts=2 sw=2
    69 # vim: wrap sts=2 sw=2