From 42a48e8c03bb33cb9616a7d143ecf362d5b7edf9 Mon Sep 17 00:00:00 2001 From: Marc Wouts Date: Sun, 30 Jun 2024 12:29:28 +0100 Subject: [PATCH] These two tests require myst --- tests/functional/round_trip/test_myst_header.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/functional/round_trip/test_myst_header.py b/tests/functional/round_trip/test_myst_header.py index a1869dcc..d214afec 100644 --- a/tests/functional/round_trip/test_myst_header.py +++ b/tests/functional/round_trip/test_myst_header.py @@ -1,8 +1,11 @@ +import pytest + from jupytext import reads, writes from jupytext.compare import compare from jupytext.config import load_jupytext_configuration_file +@pytest.mark.requires_myst def test_myst_header_is_stable_1247_using_inline_filter( md="""--- jupytext: @@ -29,6 +32,7 @@ def test_myst_header_is_stable_1247_using_inline_filter( compare(md2, md) +@pytest.mark.requires_myst def test_myst_header_is_stable_1247_using_config( jupytext_toml_content="""notebook_metadata_filter = "-jupytext.text_representation.jupytext_version,settings,mystnb" """,