From 7ccf174916f49b9a4d91a87e011afe2c73c2690f Mon Sep 17 00:00:00 2001 From: Knut Rand Date: Fri, 20 Oct 2023 14:45:37 +0200 Subject: [PATCH] removing c code test --- tests/test_c_code.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/test_c_code.py b/tests/test_c_code.py index 4e3f9a42..7ef8cb6f 100644 --- a/tests/test_c_code.py +++ b/tests/test_c_code.py @@ -1,10 +1,12 @@ import numpy as np +import pytest from numpy.testing import assert_array_equal -from npstructures.copy_segment import compute -print('-----------------------') +# from npstructures.copy_segment import compute +print('-----------------------') +@pytest.mark.skip def test_copy(): array_1 = np.array([1, 2, 3, 4, 5, 6, 7, 8]) array_2 = np.zeros_like(array_1, shape=(5,))