Skip to content

Commit

Permalink
[Tests] Tighten up doc testing
Browse files Browse the repository at this point in the history
  • Loading branch information
MinchinWeb committed Oct 2, 2016
1 parent 5977c81 commit 9b17cf5
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ python:
- 3.3
- 3.4
- 3.5
- "3.6-dev"
- "nightly"
- "pypy"
- "pypy3"
env:
Expand All @@ -16,7 +16,7 @@ matrix:
allow_failures:
- python: 2.7
- python: "pypy"
- python: "3.6-dev"
- python: "nightly"
- env: DOC_TESTS=true
fast_finish: true
exclude:
Expand All @@ -37,8 +37,8 @@ before_install:
# command to install dependencies
install:
- pip install --upgrade pip
- pip install -r requirements.txt
- if [ "$UNIT_TESTS" = "true" ]; then
pip install -r requirements.txt;
pip install -r tests/requirements.txt;
pip install coveralls;
fi
Expand All @@ -61,7 +61,11 @@ script:
fi
- if [ "$DOC_TESTS" = "true" ]; then
isort --recursive colourettu --verbose;
fi
- if [ "$DOC_TESTS" = "true" ]; then
pydocstyle colourettu;
fi
- if [ "$DOC_TESTS" = "true" ]; then
pycodestyle colourettu;
fi
after_success:
Expand Down

0 comments on commit 9b17cf5

Please sign in to comment.