From b201eece1962f8accc76b1bba732d6ca8ebd46aa Mon Sep 17 00:00:00 2001 From: "Ralf W. Grosse-Kunstleve" Date: Sat, 6 Jul 2024 13:17:20 -0700 Subject: [PATCH] Remove pytest.skip("BAKEIN_BREAK: ...") in test_class_sh_mi_thunks.py (tests still fail) --- tests/test_class_sh_mi_thunks.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/test_class_sh_mi_thunks.py b/tests/test_class_sh_mi_thunks.py index a2560f023..c1c8a3043 100644 --- a/tests/test_class_sh_mi_thunks.py +++ b/tests/test_class_sh_mi_thunks.py @@ -31,7 +31,6 @@ def test_ptrdiff_drvd_base0(): ) def test_get_vec_size_raw_shared(get_fn, vec_size_fn): obj = get_fn() - pytest.skip("BAKEIN_BREAK: Segmentation fault") assert vec_size_fn(obj) == 5 @@ -40,7 +39,6 @@ def test_get_vec_size_raw_shared(get_fn, vec_size_fn): ) def test_get_vec_size_unique(get_fn): obj = get_fn() - pytest.skip("BAKEIN_BREAK: AssertionError") assert m.vec_size_base0_unique_ptr(obj) == 5 with pytest.raises(ValueError, match="Python instance was disowned"): m.vec_size_base0_unique_ptr(obj) @@ -48,7 +46,6 @@ def test_get_vec_size_unique(get_fn): def test_get_shared_vec_size_unique(): obj = m.get_drvd_as_base0_shared_ptr() - pytest.skip("BAKEIN_BREAK: Failed: DID NOT RAISE ") with pytest.raises(ValueError) as exc_info: m.vec_size_base0_unique_ptr(obj) assert (