From a0b29d74cecbcb024a85901360d4641912831f8f Mon Sep 17 00:00:00 2001 From: Marc Wouts Date: Thu, 18 Oct 2018 23:17:27 +0200 Subject: [PATCH] Frozen cells are not supported in plain markdown #101 --- tests/test_mirror.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_mirror.py b/tests/test_mirror.py index f86fa4f11..b05673cb8 100644 --- a/tests/test_mirror.py +++ b/tests/test_mirror.py @@ -164,6 +164,6 @@ def test_ipynb_to_Rmd(nb_file): assert_conversion_same_as_mirror(nb_file, '.Rmd', 'ipynb_to_Rmd') -@pytest.mark.parametrize('nb_file', list_notebooks('ipynb', skip='66')) +@pytest.mark.parametrize('nb_file', list_notebooks('ipynb', skip='(66|frozen)')) def test_ipynb_to_md(nb_file): assert_conversion_same_as_mirror(nb_file, '.md', 'ipynb_to_md')