summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorMike Kaganski <mike.kaganski@collabora.com>2021-06-03 13:15:11 +0200
committerMike Kaganski <mike.kaganski@collabora.com>2021-06-03 15:39:10 +0200
commit8d98dd8b3896c14af057e90e3a327172a9262e03 (patch)
treeb9713938d901ed02337ca55ff2484be9a5956273 /sc
parentf13efe0199f8a879ba148f3db760fd288407d932 (diff)
tdf#142635: skip UITest for now
Change-Id: I84f5c8b2dd3f18456e61e8f9de90371d1a7601e6 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/116467 Tested-by: Jenkins Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
Diffstat (limited to 'sc')
-rw-r--r--sc/qa/uitest/chart/copyPaste.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/sc/qa/uitest/chart/copyPaste.py b/sc/qa/uitest/chart/copyPaste.py
index 3d37595f2dda..078dc1938973 100644
--- a/sc/qa/uitest/chart/copyPaste.py
+++ b/sc/qa/uitest/chart/copyPaste.py
@@ -4,6 +4,9 @@
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
+
+import unittest
+import platform
from uitest.framework import UITestCase
from libreoffice.calc.document import get_cell_by_position
from libreoffice.uno.propertyvalue import mkPropertyValues
@@ -11,6 +14,7 @@ from uitest.uihelper.common import get_url_for_data_file
class CopyPaste(UITestCase):
+ @unittest.skipIf(platform.system() == "Windows", "Fails on Windows: tdf#142635")
def test_copy_paste_chart_with_dot_in_sheet_name(self):
calc_doc = self.ui_test.load_file(get_url_for_data_file("chartWithDotInSheetName.ods"))
document = self.ui_test.get_component()