We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1327cf3 commit dc6b9ffCopy full SHA for dc6b9ff
README.md
@@ -144,7 +144,7 @@ deactivate
144
pip3 install --editable .
145
```
146
147
-#### Run tests
+#### Run tests and lint
148
First make sure to install the test dependencies:
149
150
pip3 install -r requirements-test.txt
@@ -155,6 +155,11 @@ To run the test suite:
155
pytest -v tests/
156
157
158
+To run the lint check:
159
+```bash
160
+flake8 . --count --max-complexity=10 --max-line-length=127 --statistics --exclude env
161
+```
162
+
163
#### Manualy generate binary
164
```bash
165
pyinstaller --clean --hidden-import one.__main__ cli.py --onefile --noconsole -n one
0 commit comments