File tree 2 files changed +5
-4
lines changed 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -37,8 +37,9 @@ install:
37
37
# (issue 702 : fixed bug when writing metadata using HDF format)
38
38
- conda create -n travisci --yes python=${TRAVIS_PYTHON_VERSION:0:3}
39
39
" numpy>=1.13" " pandas>=0.20" pytables matplotlib xlrd openpyxl
40
- xlsxwriter "pytest>=3.5" pytest-pep8
40
+ xlsxwriter "pytest>=3.5"
41
41
- source activate travisci
42
+ - pip install pytest-flake8
42
43
43
44
script :
44
45
- pytest
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ addopts = -v --doctest-modules
11
11
--ignore =larray/ipfp
12
12
--ignore =larray/inout/xw_reporting.py
13
13
--deselect larray/core/array.py::larray.core.array.Array.astype
14
- --pep8
14
+ --flake8
15
15
# --cov
16
16
# E122: continuation line missing indentation or outdented
17
17
# E127: check indents
@@ -21,8 +21,8 @@ addopts = -v --doctest-modules
21
21
# E303: too many blank lines
22
22
# E402 module level import not at top of file
23
23
# E712: comparison to True should be 'if cond is True:' or 'if cond:'
24
- pep8ignore =
24
+ flake8-ignore =
25
25
__init__.py E402
26
26
xw_excel.py E303
27
27
test_*.py E127 E122 E201 E202 E241 E712
28
- pep8maxlinelength = 120
28
+ flake8-max-line-length = 120
You can’t perform that action at this time.
0 commit comments