We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
test_named_selection_scoping_with_deepcopy
1 parent 07c5768 commit 076895aCopy full SHA for 076895a
tests/test_factories.py
@@ -20,6 +20,9 @@
20
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
# SOFTWARE.
22
23
+import platform
24
+import sys
25
+
26
import numpy as np
27
import pytest
28
@@ -303,6 +306,10 @@ def test_named_selection_scoping(model_with_ns):
303
306
assert len(scop.ids) != 0
304
307
305
308
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
+)
313
def test_named_selection_scoping_with_deepcopy(model_with_ns):
314
model = Model(model_with_ns)
315
server_2 = server.start_local_server(config=server_factory.AvailableServerConfigs.GrpcServer)
0 commit comments