add missing pytester type hints
This commit is contained in:
parent
1bd83e75a4
commit
7495d2c345
|
@ -63,7 +63,7 @@ def test_marked_class_run_twice(pytester: Pytester):
|
||||||
rec.assertoutcome(passed=6)
|
rec.assertoutcome(passed=6)
|
||||||
|
|
||||||
|
|
||||||
def test_ini_markers(pytester):
|
def test_ini_markers(pytester: Pytester):
|
||||||
pytester.makeini(
|
pytester.makeini(
|
||||||
"""
|
"""
|
||||||
[pytest]
|
[pytest]
|
||||||
|
@ -86,7 +86,7 @@ def test_ini_markers(pytester):
|
||||||
rec.assertoutcome(passed=1)
|
rec.assertoutcome(passed=1)
|
||||||
|
|
||||||
|
|
||||||
def test_markers_option(pytester):
|
def test_markers_option(pytester: Pytester):
|
||||||
pytester.makeini(
|
pytester.makeini(
|
||||||
"""
|
"""
|
||||||
[pytest]
|
[pytest]
|
||||||
|
@ -102,7 +102,7 @@ def test_markers_option(pytester):
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
def test_ini_markers_whitespace(pytester):
|
def test_ini_markers_whitespace(pytester: Pytester):
|
||||||
pytester.makeini(
|
pytester.makeini(
|
||||||
"""
|
"""
|
||||||
[pytest]
|
[pytest]
|
||||||
|
@ -184,7 +184,7 @@ def test_mark_on_pseudo_function(pytester: Pytester):
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.parametrize("option_name", ["--strict-markers", "--strict"])
|
@pytest.mark.parametrize("option_name", ["--strict-markers", "--strict"])
|
||||||
def test_strict_prohibits_unregistered_markers(pytester, option_name):
|
def test_strict_prohibits_unregistered_markers(pytester: Pytester, option_name):
|
||||||
pytester.makepyfile(
|
pytester.makepyfile(
|
||||||
"""
|
"""
|
||||||
import pytest
|
import pytest
|
||||||
|
|
Loading…
Reference in New Issue