1
0
forked from VimPlug/jedi

Make sure to skip some tests for Python 3.5

This commit is contained in:
Dave Halter
2020-01-26 01:18:28 +01:00
parent 1a62674254
commit 2ccd015b5a

View File

@@ -17,7 +17,7 @@ collect_ignore = [
'build/',
'test/examples',
]
if sys.version_info < (3, 5):
if sys.version_info < (3, 6):
# Python 2 not supported syntax
collect_ignore.append('test/test_inference/test_mixed.py')