Skip to content

Commit 076895a

Browse files
authored
ci(test): skip test_named_selection_scoping_with_deepcopy on ubuntu for Python 3.13 (#2856)
1 parent 07c5768 commit 076895a

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

tests/test_factories.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@
2020
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121
# SOFTWARE.
2222

23+
import platform
24+
import sys
25+
2326
import numpy as np
2427
import pytest
2528

@@ -303,6 +306,10 @@ def test_named_selection_scoping(model_with_ns):
303306
assert len(scop.ids) != 0
304307

305308

309+
@pytest.mark.skipif(
310+
sys.version_info >= (3, 13) and platform.system() == "Linux",
311+
reason="Currently fails for Python 3.13 on Ubuntu.",
312+
)
306313
def test_named_selection_scoping_with_deepcopy(model_with_ns):
307314
model = Model(model_with_ns)
308315
server_2 = server.start_local_server(config=server_factory.AvailableServerConfigs.GrpcServer)

0 commit comments

Comments
 (0)