mirror of
https://github.com/PyCQA/flake8.git
synced 2026-03-30 02:46:52 +00:00
This fixes a regression introduced in !346 to ensure that `--config` and `--isolated` are recognized in `aggregate_options()`. The regression manifested because `aggregate_options()` was relying on re-parsing `argv` to obtain the option values. However, !346 changed the preliminary parsing logic to only parse and "eat" what is necessary and forward along the options needed before all the configuration was loaded. This code path was overlooked because the tests in `test_aggregator()` were passing but the call from the `Application` object would never have these options in the remaining `argv` list to be passed long. |
||
|---|---|---|
| .. | ||
| conftest.py | ||
| test_application.py | ||
| test_base_formatter.py | ||
| test_checker_manager.py | ||
| test_config_file_finder.py | ||
| test_debug.py | ||
| test_decision_engine.py | ||
| test_exceptions.py | ||
| test_file_checker.py | ||
| test_file_processor.py | ||
| test_filenameonly_formatter.py | ||
| test_get_local_plugins.py | ||
| test_git.py | ||
| test_legacy_api.py | ||
| test_merged_config_parser.py | ||
| test_nothing_formatter.py | ||
| test_option.py | ||
| test_option_manager.py | ||
| test_plugin.py | ||
| test_plugin_manager.py | ||
| test_plugin_type_manager.py | ||
| test_pyflakes_codes.py | ||
| test_setuptools_command.py | ||
| test_statistics.py | ||
| test_style_guide.py | ||
| test_utils.py | ||
| test_violation.py | ||