File tree Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Original file line number Diff line number Diff line change 40
40
run : make man
41
41
42
42
- name : Lint codebase
43
- run : python3 -m flake8
43
+ run : python3 -m flake8 --ignore E111
44
44
45
45
- name : Run test suite
46
46
run : python3 -m pytest tests/
88
88
run : make man
89
89
90
90
- name : Lint codebase
91
- run : python3 -m flake8
91
+ run : python3 -m flake8 --ignore E111
92
92
93
93
- name : Run test suite
94
94
run : python3 -m pytest tests/
@@ -135,7 +135,7 @@ jobs:
135
135
run : make man
136
136
137
137
- name : Lint codebase
138
- run : python3 -m flake8
138
+ run : python3 -m flake8 --ignore E111
139
139
140
140
- name : Run test suite
141
141
run : python3 -m pytest tests/
@@ -151,34 +151,34 @@ jobs:
151
151
152
152
permissions :
153
153
contents : read
154
-
154
+
155
155
strategy :
156
156
matrix :
157
157
python-version : ['3.11', '3.12', '3.13']
158
-
158
+
159
159
steps :
160
160
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
161
-
161
+
162
162
- name : Set up Python ${{ matrix.python-version }}
163
163
uses : actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
164
164
with :
165
165
python-version : ${{ matrix.python-version }}
166
-
166
+
167
167
- name : Install developer dependencies
168
168
run : |
169
169
python3 -m pip install -U pip
170
170
python3 -m pip install -U pytest pytest-runner flake8
171
-
171
+
172
172
- name : Install tldr dependencies
173
173
run :
174
174
python3 -m pip install -r requirements.txt --user
175
-
175
+
176
176
- name : Lint codebase
177
- run : python3 -m flake8
178
-
177
+ run : python3 -m flake8 --ignore E111
178
+
179
179
- name : Run test suite
180
180
run : python3 -m pytest tests/
181
-
181
+
182
182
- name : Test tldr cli
183
183
run : |
184
184
python3 -m pip install .
You can’t perform that action at this time.
0 commit comments