Skip to content

Commit 3213eb8

Browse files
committed
Add --config option to flake8 command in CI workflow
Before the latest release of flake8, the configuration file was automatically loaded, but the program's behavior has changed.
1 parent 4790133 commit 3213eb8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/libraries_report-size-deltas.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
run: |
3434
pip install --quiet flake8
3535
pip install --quiet pep8-naming
36-
flake8 --show-source "$GITHUB_WORKSPACE/libraries/report-size-deltas"
36+
flake8 --config "$GITHUB_WORKSPACE/libraries/report-size-deltas/.flake8" --show-source "$GITHUB_WORKSPACE/libraries/report-size-deltas"
3737
3838
- name: Run Python unit tests
3939
run: |

0 commit comments

Comments
 (0)