File tree Expand file tree Collapse file tree 3 files changed +26
-2
lines changed Expand file tree Collapse file tree 3 files changed +26
-2
lines changed Original file line number Diff line number Diff line change @@ -175,3 +175,4 @@ after_script:
175
175
- source activate pandas && ci/print_versions.py
176
176
- ci/print_skipped.py /tmp/nosetests.xml
177
177
- ci/lint.sh
178
+ - ci/lint_ok_for_now.sh
Original file line number Diff line number Diff line change @@ -4,8 +4,11 @@ echo "inside $0"
4
4
5
5
source activate pandas
6
6
7
- echo flake8 pandas/core --statistics
8
- flake8 pandas/core --statistics
7
+ for path in ' core'
8
+ do
9
+ echo " linting -> pandas/$path "
10
+ flake8 pandas/$path --filename ' *.py' --statistics -q
11
+ done
9
12
10
13
RET=" $? "
11
14
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ echo " inside $0 "
4
+
5
+ source activate pandas
6
+
7
+ for path in ' io' ' stats' ' computation' ' tseries' ' util' ' compat' ' tools' ' sparse' ' tests'
8
+ do
9
+ echo " linting [ok_for_now] -> pandas/$path "
10
+ flake8 pandas/$path --filename ' *.py' --statistics -q
11
+ done
12
+
13
+ RET=" $? "
14
+
15
+ # we are disabling the return code for now
16
+ # to have Travis-CI pass. When the code
17
+ # passes linting, re-enable
18
+ # exit "$RET"
19
+
20
+ exit 0
You can’t perform that action at this time.
0 commit comments