File tree 2 files changed +7
-7
lines changed
2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 10
10
- name : Run ruff
11
11
run : docker compose run django ruff check styleguide_example/
12
12
- name : Run mypy
13
- run : |
14
- docker compose run django mypy --config mypy.ini --install-types
15
- docker compose run django mypy --config mypy.ini styleguide_example/
13
+ run : docker compose run django mypy --config mypy.ini styleguide_example/
16
14
- name : Run tests
17
15
run : docker compose run django py.test
18
16
51
49
- name : Run ruff
52
50
run : ruff check .
53
51
- name : Type check
54
- run : |
55
- mypy --config mypy.ini --install-types
56
- mypy --config mypy.ini styleguide_example/
52
+ run : mypy --config mypy.ini styleguide_example/
57
53
- name : Run tests
58
54
run : pytest
59
55
Original file line number Diff line number Diff line change @@ -44,4 +44,8 @@ ignore_missing_imports = True
44
44
45
45
[mypy-qrcode.*]
46
46
# Remove this when qrcode stubs are present
47
- ignore_missing_imports = True
47
+ ignore_missing_imports = True
48
+
49
+ [mypy-tabulate.*]
50
+ # Remove this when qrcode stubs are present
51
+ ignore_missing_imports = True
You can’t perform that action at this time.
0 commit comments