Skip to content

Commit f1124eb

Browse files
author
Andrew Omondi
committed
todo validate missing imports
1 parent fe9acfc commit f1124eb

8 files changed

Lines changed: 2 additions & 9 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,11 @@ jobs:
5858
- name: Lint with Pylint
5959
working-directory: ${{ matrix.library.path }}
6060
run: |
61-
poetry run pylint ${{ matrix.library.name }} --disable=W --rcfile=.pylintrc
61+
poetry run pylint ${{ matrix.library.name }} --disable=W --rcfile=.pylintrc
6262
- name: Static type checking with Mypy
6363
working-directory: ${{ matrix.library.path }}
6464
run: |
65-
poetry run mypy ${{ matrix.library.name }}
65+
poetry run mypy ${{ matrix.library.name }} --ignore_missing_imports
6666
- name: Run the tests
6767
working-directory: ${{ matrix.library.path }}
6868
run: |

packages/abstractions/pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ pytest-asyncio = "^0.24.0"
4040
[mypy]
4141
warn_unused_configs = true
4242
files = "kiota_abstractions"
43-
ignore_missing_imports = true
4443

4544
[tool.yapf]
4645
based_on_style = "pep8"

packages/authentication/azure/pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ pytest-asyncio = "^0.24.0"
4343
[mypy]
4444
warn_unused_configs = true
4545
files = "kiota_authentication_azure"
46-
ignore_missing_imports = true
4746

4847
[tool.yapf]
4948
based_on_style = "pep8"

packages/http/httpx/pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ pytest-mock = "^3.14.0"
4444
[tool.mypy]
4545
warn_unused_configs = true
4646
files = "kiota_http"
47-
ignore_missing_imports = true
4847

4948
[tool.yapf]
5049
based_on_style = "pep8"

packages/serialization/form/pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ pytest-asyncio = "^0.24.0"
3939
[tool.mypy]
4040
warn_unused_configs = true
4141
files = "kiota_serialization_form"
42-
ignore_missing_imports = true
4342

4443
[tool.yapf]
4544
based_on_style = "pep8"

packages/serialization/json/pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ pytest-asyncio = "^0.24.0"
3939
[tool.mypy]
4040
warn_unused_configs = true
4141
files = "kiota_serialization_json"
42-
ignore_missing_imports = true
4342

4443
[tool.yapf]
4544
based_on_style = "pep8"

packages/serialization/multipart/pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ pytest-asyncio = "^0.24.0"
3939
[tool.mypy]
4040
warn_unused_configs = true
4141
files = "kiota_serialization_multipart"
42-
ignore_missing_imports = true
4342

4443
[tool.yapf]
4544
based_on_style = "pep8"

packages/serialization/text/pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ pytest-asyncio = "^0.24.0"
3939
[tool.mypy]
4040
warn_unused_configs = true
4141
files = "kiota_serialization_text"
42-
ignore_missing_imports = true
4342

4443
[tool.yapf]
4544
based_on_style = "pep8"

0 commit comments

Comments
 (0)