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 51c33e3 commit 6e72952Copy full SHA for 6e72952
mypy/test/testpythoneval.py
@@ -25,8 +25,9 @@
25
26
# Files which contain test case descriptions.
27
python_eval_files = ['pythoneval.test',
28
- 'python2eval.test',
29
- 'pythoneval-asyncio.test']
+ 'python2eval.test']
+
30
+python_34_eval_files = ['pythoneval-asyncio.test']
31
32
# Path to Python 3 interpreter
33
python3_path = 'python3'
@@ -40,6 +41,10 @@ def cases(self):
40
41
for f in python_eval_files:
42
c += parse_test_cases(os.path.join(test_data_prefix, f),
43
test_python_evaluation, test_temp_dir, True)
44
+ if sys.version_info.major == 3 and sys.version_info.minor >= 4:
45
+ for f in python_34_eval_files:
46
+ c += parse_test_cases(os.path.join(test_data_prefix, f),
47
+ test_python_evaluation, test_temp_dir, True)
48
return c
49
50
0 commit comments