From f0348104f8bd7d77537bdd4f6ad90f22bb4e869d Mon Sep 17 00:00:00 2001 From: Kostas Karmas Date: Fri, 30 Oct 2020 14:11:00 +0100 Subject: [PATCH] Skip running the tests for the old arrange algorithm So that the output of the CI/CD testing step is not cluttered with deprecation warnings. Done during TTT --- tests/TestArrange.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/TestArrange.py b/tests/TestArrange.py index f37e48f19c..85299a314d 100755 --- a/tests/TestArrange.py +++ b/tests/TestArrange.py @@ -2,10 +2,13 @@ # Cura is released under the terms of the LGPLv3 or higher. import numpy +import pytest from cura.Arranging.Arrange import Arrange from cura.Arranging.ShapeArray import ShapeArray +pytestmark = pytest.mark.skip() + def gimmeTriangle(): """Triangle of area 12"""