Skip to content

Commit

Permalink
Enable en/ru spellcheck in travis
Browse files Browse the repository at this point in the history
  • Loading branch information
vrutkovs committed Apr 18, 2017
1 parent 026695b commit f8cf6ab
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@ addons:
apt:
packages:
- sshpass
- enchant
- enchant-dev

env:
- TESTS="spellcheck"
- TESTS="build"

matrix:
allow_failures:
- env: TESTS="spellcheck"

language: python
cache: pip
Expand All @@ -11,7 +21,10 @@ python:
install: "pip install -r requirements.txt"

script:
- nikola build
- case $TESTS in
spellcheck) nikola plugin -i spell_check ;;
build) nikola build ;;
esac

deploy:
skip_cleanup: true
Expand Down

0 comments on commit f8cf6ab

Please sign in to comment.