(program_text: str, testcase: DataDrivenTestCase)
| 35 | |
| 36 | |
| 37 | def get_semanal_options(program_text: str, testcase: DataDrivenTestCase) -> Options: |
| 38 | options = parse_options(program_text, testcase, 1) |
| 39 | options.use_builtins_fixtures = True |
| 40 | options.semantic_analysis_only = True |
| 41 | options.show_traceback = True |
| 42 | options.python_version = PYTHON3_VERSION |
| 43 | options.reveal_verbose_types = True |
| 44 | return options |
| 45 | |
| 46 | |
| 47 | class SemAnalSuite(DataSuite): |
no test coverage detected
searching dependent graphs…