Lines Matching +full:pytest +full:- +full:version
25 import pytest
27 # AsyncMock is new in 3.8, so if we're using an older version we need the
28 # backported version of mock
37 @pytest.mark.parametrize(
42 ('20.0.0-rc4', False, '20.0.0'),
44 def test_next_version(current: str, is_point: bool, expected: str) -> None:
48 @pytest.mark.parametrize(
52 ('20.0.0-rc4', False, '19.3.0'),
54 def test_previous_version(current: str, is_point: bool, expected: str) -> None:
58 @pytest.mark.asyncio
61 version = '19.2.0'
62 out = await get_shortlog(version)
66 @pytest.mark.asyncio
69 version = '19.2.0'
70 out = await gather_commits(version)
74 @pytest.mark.asyncio
75 @pytest.mark.parametrize(
98 Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/3456
108 Closes: https://gitlab.freedesktop.org/mesa/drm/-/3456
145 Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/3456
146 Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/3457
147 Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/3458
153 Without /-/
163 Closes: https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/20241
175 Fixes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/37
191 async def test_parse_issues(content: str, bugs: typing.List[str]) -> None:
202 @pytest.mark.asyncio