Skip to content

Commit

Permalink
ENH: Use codespell from PyPi
Browse files Browse the repository at this point in the history
  • Loading branch information
larsoner committed Jun 9, 2016
1 parent b86ba4a commit a1ac2c6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
7 changes: 1 addition & 6 deletions .travis.yml
Expand Up @@ -67,12 +67,7 @@ install:
fi;
fi;
- if [ "${DEPS}" == "nodata" ]; then
pip install -q flake8;
wget -q https://github.com/lucasdemarchi/codespell/archive/v1.8.tar.gz;
tar xzf v1.8.tar.gz;
cp codespell-1.8/codespell.py ~/miniconda/envs/testenv/bin;
rm v1.8.tar.gz;
rm -r codespell-1.8;
pip install -q flake8 codespell;
fi;
- pip install -q codecov nose-timer
- if [ "${PYTHON}" == "2.6" ]; then
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -104,7 +104,7 @@ codespell: # running manually
@codespell.py -w -i 3 -q 3 -S $(CODESPELL_SKIPS) -D ./dictionary.txt $(CODESPELL_DIRS)

codespell-error: # running on travis
@codespell.py -i 0 -q 7 -S $(CODESPELL_SKIPS) -D ./dictionary.txt $(CODESPELL_DIRS) | tee /dev/tty | wc -l | xargs test 0 -eq
@codespell.py -i 0 -q 7 -S $(CODESPELL_SKIPS) -D ./dictionary.txt $(CODESPELL_DIRS)

manpages:
@echo "I: generating manpages"
Expand Down

0 comments on commit a1ac2c6

Please sign in to comment.