Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

chore: enable mypy for tests/meta/*#1693

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
nejch merged 1 commit intomainfromjlvillay/mypy_test_meta
Nov 22, 2021
Merged
Show file tree
Hide file tree
Changes fromall commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletionpyproject.toml
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -26,7 +26,6 @@ module = [
"gitlab.v4.objects.sidekiq",
"tests.functional.*",
"tests.functional.api.*",
"tests.meta.*",
"tests.unit.*",
"tests.smoke.*"
]
Expand Down
2 changes: 2 additions & 0 deletionsrequirements-lint.txt
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -2,6 +2,8 @@ black==20.8b1
flake8==4.0.1
isort==5.10.1
mypy==0.910
pytest
types-PyYAML==6.0.1
types-requests==2.26.0
types-setuptools==57.4.2
types-toml==0.10.1
5 changes: 3 additions & 2 deletionstests/meta/test_ensure_type_hints.py
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -7,13 +7,14 @@
import inspect
from typing import Tuple, Type

import _pytest
import toml

import gitlab.mixins
import gitlab.v4.objects


def pytest_generate_tests(metafunc):
def pytest_generate_tests(metafunc: _pytest.python.Metafunc) -> None:
"""Find all of the classes in gitlab.v4.objects and pass them to our test
function"""

Expand DownExpand Up@@ -54,7 +55,7 @@ def pytest_generate_tests(metafunc):


class TestTypeHints:
def test_check_get_function_type_hints(self, class_info: Tuple[str, Type]):
def test_check_get_function_type_hints(self, class_info: Tuple[str, Type]) -> None:
"""Ensure classes derived from GetMixin have defined a 'get()' method with
correct type-hints.
"""
Expand Down
6 changes: 3 additions & 3 deletionstests/meta/test_mro.py
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -49,7 +49,7 @@ class Wrongv4Object(RESTObject, Mixin):
import gitlab.v4.objects


def test_show_issue():
def test_show_issue() -> None:
"""Test case to demonstrate the TypeError that occurs"""

class RESTObject(object):
Expand All@@ -61,7 +61,7 @@ class Mixin(RESTObject):

with pytest.raises(TypeError) as exc_info:
# Wrong ordering here
class Wrongv4Object(RESTObject, Mixin):
class Wrongv4Object(RESTObject, Mixin): # type: ignore
...

# The error message in the exception should be:
Expand All@@ -76,7 +76,7 @@ class Correctv4Object(Mixin, RESTObject):
...


def test_mros():
def test_mros() -> None:
"""Ensure objects defined in gitlab.v4.objects have REST* as last item in
class definition.

Expand Down

[8]ページ先頭

©2009-2025 Movatter.jp