Skip to content

Latest commit

Β 

History

History
12 lines (11 loc) Β· 388 Bytes

README.md

File metadata and controls

12 lines (11 loc) Β· 388 Bytes

Install Requirement

pip install -r requirements.txt

Goal

# check if there are Python syntax errors or undefined names
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
# run testcase
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
pytest