You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
449 B
Python
18 lines
449 B
Python
import warnings
|
|
import pytest
|
|
from matplotlib.testing.decorators import check_figures_equal
|
|
|
|
|
|
@pytest.mark.xfail(
|
|
strict=True, reason="testing that warnings fail tests"
|
|
)
|
|
def test_warn_to_fail():
|
|
warnings.warn("This should fail the test")
|
|
|
|
|
|
@pytest.mark.parametrize("a", [1])
|
|
@check_figures_equal(extensions=["png"])
|
|
@pytest.mark.parametrize("b", [1])
|
|
def test_parametrize_with_check_figure_equal(a, fig_ref, b, fig_test):
|
|
assert a == b
|