do not override line lenght

This commit is contained in:
frederik
2025-11-22 11:35:44 +01:00
parent 8d08e17770
commit b0c4d0a74c
2 changed files with 4 additions and 3 deletions
+3 -3
View File
@@ -5,7 +5,7 @@ name: Python application
on:
push:
branches: [ "main" ]
branches: [ "main", "test_me" ]
pull_request:
branches: [ "main" ]
@@ -32,8 +32,8 @@ jobs:
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
# exit-zero treats all errors as warnings.
flake8 . --count --exit-zero --max-complexity=10 --statistics
- name: Test with pytest
run: |
pytest