Skip to content

Commit

Permalink
Run codespell on Travis
Browse files Browse the repository at this point in the history
Fixes: #671
Signed-off-by: Manuel Hutter <manuel@hutter.io>
  • Loading branch information
mhutter authored and kmova committed Oct 31, 2018
1 parent a5a5f54 commit bfc8748
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 3 deletions.
4 changes: 4 additions & 0 deletions .codespell-ignores.txt
@@ -0,0 +1,4 @@
aks
cas
upto
tim
7 changes: 7 additions & 0 deletions .travis.yml
@@ -0,0 +1,7 @@
---
language: python
python:
- "3.6"

install: pip install codespell
script: make spell
10 changes: 7 additions & 3 deletions Makefile
@@ -1,6 +1,6 @@
# Makefile for building Containers for Storage Testing
#
#
#
#
# Reference Guide - https://www.gnu.org/software/make/manual/make.html


Expand Down Expand Up @@ -42,12 +42,16 @@ _push_operator_image:

build: deps _build_operator_image _push_operator_image

spell:
codespell \
--ignore-words="./.codespell-ignores.txt" \
--skip="./.git,*.png,*.jpg,*.ico,*.pdf,get-pip.py,dynamo"

#
# This is done to avoid conflict with a file of same name as the targets
# mentioned in this makefile.
#
.PHONY: help deps build
.PHONY: help deps build spell
.DEFAULT_GOAL := build


0 comments on commit bfc8748

Please sign in to comment.