diff options
-rw-r--r-- | .travis.yml | 1 | ||||
-rw-r--r-- | tox.ini | 12 |
2 files changed, 10 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index f4c40470..cacd1e27 100644 --- a/.travis.yml +++ b/.travis.yml @@ -49,6 +49,7 @@ matrix: - os: osx env: TOX_ENV=py3pep8 compiler: clang + - os: linux env: TOX_ENV=docs compiler: clang @@ -42,18 +42,24 @@ commands = [testenv:pep8] deps = + doc8 flake8 flake8-import-order pep8-naming -commands = flake8 . +commands = + flake8 . + doc8 README.rst docs/ [testenv:py3pep8] -basepython = python3.3 +basepython = python3 deps = + doc8 flake8 flake8-import-order pep8-naming -commands = flake8 . +commands = + flake8 . + doc8 README.rst docs/ [flake8] exclude = .tox,*.egg |