diff options
author | IWASE Yusuke <iwase.yusuke0@gmail.com> | 2017-10-11 16:48:21 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2017-11-01 21:56:21 +0900 |
commit | 3f022e8075153a637e96ba80ee2ca537ebe6004a (patch) | |
tree | 71366e79c9946caa4cfd6ae8d2ad049c6d76a427 /.travis.yml | |
parent | 6f88f352e4aa78a637f514fd0302ab7c98942640 (diff) |
tools: Add script for spell checking
Signed-off-by: IWASE Yusuke <iwase.yusuke0@gmail.com>
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 3dff97ee..18ddbefa 100644 --- a/.travis.yml +++ b/.travis.yml @@ -147,6 +147,15 @@ matrix: - <<: *_docker env: - TEST=bgp_malformed_msg_handling_test.py +# +# Spell Check +# + - language: python + python: "2.7" + before_install: true + install: pip install scspell3k + script: bash tools/spell-check/scspell.sh + cache: pip: true |