[Libreoffice-commits] core.git: sc/qa
Mike Kaganski (via logerrit)
logerrit at kemper.freedesktop.org
Thu Jun 3 13:39:50 UTC 2021
sc/qa/uitest/chart/copyPaste.py | 4 ++++
1 file changed, 4 insertions(+)
New commits:
commit 8d98dd8b3896c14af057e90e3a327172a9262e03
Author: Mike Kaganski <mike.kaganski at collabora.com>
AuthorDate: Thu Jun 3 13:15:11 2021 +0200
Commit: Mike Kaganski <mike.kaganski at collabora.com>
CommitDate: Thu Jun 3 15:39:10 2021 +0200
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 at collabora.com>
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()
More information about the Libreoffice-commits
mailing list