Skip to content

Commit 3bab59a

Browse files
cclaussharshildarji
cclauss
authored andcommitted
LGTM: Start testing on Python 3 instead of Python 2 (TheAlgorithms#510)
* LGTM: Start testing on Python 3 instead of Python 2 Fixes: TheAlgorithms#492 * LGTM: Run flake8 tests in before_index * Update .lgtm.yml * Indentation * python3 -m * Try on Python 3.7 instead of 3.6 * LGTM: Run flake8 tests on Python 3.6 * Check version of flake8 * python3 -m pip install --upgrade --user flake8 * requirements: flake8 * Update .lgtm.yml * Ready for review * Update .lgtm.yml * Force a retest * Rebuild
1 parent 3fa8f7b commit 3bab59a

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.lgtm.yml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
extraction:
2+
python:
3+
python_setup:
4+
version: 3
5+
after_prepare:
6+
- python3 -m pip install --upgrade --user flake8
7+
before_index:
8+
- python3 -m flake8 --version # flake8 3.6.0 on CPython 3.6.5 on Linux
9+
# stop the build if there are Python syntax errors or undefined names
10+
- python3 -m flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics
11+
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
12+
- python3 -m flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics

0 commit comments

Comments
 (0)