(self)
| 18 | |
| 19 | class ArgSuite(Suite): |
| 20 | def test_coherence(self) -> None: |
| 21 | options = Options() |
| 22 | _, parsed_options = process_options([], require_targets=False) |
| 23 | # FIX: test this too. Requires changing working dir to avoid finding 'setup.cfg' |
| 24 | options.config_file = parsed_options.config_file |
| 25 | assert options.snapshot() == parsed_options.snapshot() |
| 26 | |
| 27 | def test_executable_inference(self) -> None: |
| 28 | """Test the --python-executable flag with --python-version""" |
nothing calls this directly
no test coverage detected