Commit ea1bb21 1 parent d217be5 commit ea1bb21 Copy full SHA for ea1bb21
File tree 2 files changed +11
-1
lines changed
2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -15,10 +15,18 @@ jobs:
15
15
- name : Install dependencies
16
16
run : |
17
17
python -m pip install --upgrade pip
18
- pip install python-dateutil pytest mock pytest-cov coverage
18
+ pip install python-dateutil pytest mock pytest-cov coverage ruff
19
+
20
+ - name : Check code formatting
21
+ run : ruff format .
22
+
23
+ - name : Check for code errors
24
+ run : ruff check .
25
+
19
26
- name : Run Test
20
27
run : |
21
28
py.test --cov coveralls --cov-report term-missing --cov-report=lcov --cov=resources tests/
29
+
22
30
- name : Coveralls GitHub Action
23
31
uses :
coverallsapp/[email protected]
24
32
with :
Original file line number Diff line number Diff line change
1
+ # Ignore line length for now
2
+ ignore = [" E501" ]
You can’t perform that action at this time.
0 commit comments