Skip to content

Commit 04ad72c

Browse files
committed
pep8 test
1 parent 73c31e6 commit 04ad72c

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.travis.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,13 @@ before_install:
1616
- conda update --yes --all
1717
- travis_retry conda create --yes -n test python=$PYTHON --file requirements.txt
1818
- source activate test
19-
- travis_retry conda install --yes pytest pandas vincent
19+
- conda install --yes --file requirements-dev.txt
20+
- travis_retry conda install --yes pytest pandas vincent flake8
2021
- if [[ "$PYTHON" != "3.5" ]]; then
2122
travis_retry conda install --yes mock ;
2223
fi
2324
- travis_retry pip install
2425

2526
script:
2627
- python setup.py test
28+
- find . -type f -name "*.py" | xargs flake8 --max-line-length=100

requirements-dev.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
flake8
2+
pandas
3+
pytest
4+
vincent

0 commit comments

Comments
 (0)