Skip to content

Commit f2dda97

Browse files
committed
add pylint to test
1 parent fc922db commit f2dda97

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

.pylintrc

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[MESSAGES CONTROL]
2+
3+
disable=
4+
invalid-name,
5+
missing-docstring,
6+
bad-continuation,
7+
duplicate-code,
8+
fixme,

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,11 @@ addons:
3131
- python-tk
3232

3333
before_install:
34-
- pip install pytest pytest-cov code_extract
34+
- pip install pytest pytest-cov code_extract pylint
3535
# Make sure to put the readme test at the very end; otherwise it's messing
3636
# around with the other tests.
3737
- code_extract README.md test/zzz_readme_test.py --filter python,test
38+
- pylint matplotlib2tikz
3839

3940
install:
4041
- pip install -r test_requirements.txt

0 commit comments

Comments
 (0)