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.
1 parent 208852a commit 384464dCopy full SHA for 384464d
atest/interpreter.py
@@ -103,6 +103,8 @@ def _platform_excludes(self):
103
yield 'require-py2'
104
else:
105
yield 'require-py3'
106
+ if self.version_info[:2] == (3, 5):
107
+ yield 'no-py-3.5'
108
if self.version_info < (3, 5):
109
yield 'require-py3.5'
110
if self.version_info < (3, 7):
atest/robot/cli/rebot/invalid_usage.robot
@@ -19,6 +19,7 @@ Existing And Non-Existing Input
19
20
Non-XML Input
21
[Setup] Create File %{TEMPDIR}/invalid.robot Hello, world
22
+ [Tags] no-py-3.5
23
(\\[Fatal Error\\] .*: Content is not allowed in prolog.\\n)?Reading XML source '.*invalid.robot' failed: .*
24
... source=%{TEMPDIR}/invalid.robot
25
0 commit comments