Skip to content

Commit c957fed

Browse files
committed
ignore rule
1 parent 4b5eee4 commit c957fed

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

.github/workflows/test.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
run: make man
4141

4242
- name: Lint codebase
43-
run: python3 -m flake8
43+
run: python3 -m flake8 --ignore E111
4444

4545
- name: Run test suite
4646
run: python3 -m pytest tests/
@@ -88,7 +88,7 @@ jobs:
8888
run: make man
8989

9090
- name: Lint codebase
91-
run: python3 -m flake8
91+
run: python3 -m flake8 --ignore E111
9292

9393
- name: Run test suite
9494
run: python3 -m pytest tests/
@@ -135,7 +135,7 @@ jobs:
135135
run: make man
136136

137137
- name: Lint codebase
138-
run: python3 -m flake8
138+
run: python3 -m flake8 --ignore E111
139139

140140
- name: Run test suite
141141
run: python3 -m pytest tests/
@@ -151,34 +151,34 @@ jobs:
151151

152152
permissions:
153153
contents: read
154-
154+
155155
strategy:
156156
matrix:
157157
python-version: ['3.11', '3.12', '3.13']
158-
158+
159159
steps:
160160
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
161-
161+
162162
- name: Set up Python ${{ matrix.python-version }}
163163
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
164164
with:
165165
python-version: ${{ matrix.python-version }}
166-
166+
167167
- name: Install developer dependencies
168168
run: |
169169
python3 -m pip install -U pip
170170
python3 -m pip install -U pytest pytest-runner flake8
171-
171+
172172
- name: Install tldr dependencies
173173
run:
174174
python3 -m pip install -r requirements.txt --user
175-
175+
176176
- name: Lint codebase
177-
run: python3 -m flake8
178-
177+
run: python3 -m flake8 --ignore E111
178+
179179
- name: Run test suite
180180
run: python3 -m pytest tests/
181-
181+
182182
- name: Test tldr cli
183183
run: |
184184
python3 -m pip install .

0 commit comments

Comments
 (0)