Skip to content

Commit 384464d

Browse files
committed
Disable test that's failing strangely on Python 3.5
1 parent 208852a commit 384464d

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

atest/interpreter.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,8 @@ def _platform_excludes(self):
103103
yield 'require-py2'
104104
else:
105105
yield 'require-py3'
106+
if self.version_info[:2] == (3, 5):
107+
yield 'no-py-3.5'
106108
if self.version_info < (3, 5):
107109
yield 'require-py3.5'
108110
if self.version_info < (3, 7):

atest/robot/cli/rebot/invalid_usage.robot

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ Existing And Non-Existing Input
1919

2020
Non-XML Input
2121
[Setup] Create File %{TEMPDIR}/invalid.robot Hello, world
22+
[Tags] no-py-3.5
2223
(\\[Fatal Error\\] .*: Content is not allowed in prolog.\\n)?Reading XML source '.*invalid.robot' failed: .*
2324
... source=%{TEMPDIR}/invalid.robot
2425

0 commit comments

Comments
 (0)