1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
# Copyright 2021-2022 VMware, Inc.
# SPDX-License-Identifier: Apache-2.0
#
"""
Test the ``@pytest.mark.expensive_test`` marker.
"""
def test_run_expensive_skipped(pytester):
pytester.makepyfile(
"""
import pytest
@pytest.mark.expensive_test
def test_one():
assert True
"""
)
res = pytester.runpytest()
res.assert_outcomes(skipped=1)
res.stdout.no_fnmatch_line("*PytestUnknownMarkWarning*")
def test_run_expensive_not_skipped(pytester):
pytester.makepyfile(
"""
import pytest
@pytest.mark.expensive_test
def test_one():
assert True
"""
)
res = pytester.runpytest("--run-expensive")
res.assert_outcomes(passed=1)
res.stdout.no_fnmatch_line("*PytestUnknownMarkWarning*")
def test_error_on_args_or_kwargs(pytester):
pytester.makepyfile(
"""
import pytest
@pytest.mark.expensive_test("arg")
def test_one():
assert True
@pytest.mark.expensive_test(kwarg="arg")
def test_two():
assert True
"""
)
res = pytester.runpytest("--run-expensive")
res.assert_outcomes(errors=2)
res.stdout.no_fnmatch_line("*PytestUnknownMarkWarning*")
res.stdout.fnmatch_lines(
[
"*UsageError: The 'expensive_test' marker does not accept any arguments or keyword arguments*"
]
)
|