diff --git a/CHANGELOG.md b/CHANGELOG.md index 36f9a470d..dd544c09b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,6 +29,7 @@ Semantic versioning in our case means: ### Features - Adds `WPS365`: match statement can be simplified to `if`, #3520 +- Adds `WPS366`: match sequence or mapping can be simplified to `if`, #3527 ## 1.4.0 diff --git a/tests/fixtures/noqa/noqa.py b/tests/fixtures/noqa/noqa.py index d8fd06449..87646324d 100644 --- a/tests/fixtures/noqa/noqa.py +++ b/tests/fixtures/noqa/noqa.py @@ -622,6 +622,17 @@ def many_raises_function(parameter): # noqa: WPS238 case _: ... +match data: # noqa: WPS366 + case [1, 2]: + ... + case _: + ... + +match data: # noqa: WPS366 + case {'x': 1, 'y': 2}: + ... + case _: + ... my_print(""" text diff --git a/tests/test_checker/test_noqa.py b/tests/test_checker/test_noqa.py index 838a859f7..54bd760fb 100644 --- a/tests/test_checker/test_noqa.py +++ b/tests/test_checker/test_noqa.py @@ -167,6 +167,7 @@ 'WPS363': 1, 'WPS364': 1, 'WPS365': 1, + 'WPS366': 2, 'WPS400': 0, # defined in ignored violations. 'WPS401': 0, # logically unacceptable. 'WPS402': 0, # defined in ignored violations. diff --git a/tests/test_formatter/__snapshots__/test_formatter_output.ambr b/tests/test_formatter/__snapshots__/test_formatter_output.ambr index 8eff17915..806ed67b4 100644 --- a/tests/test_formatter/__snapshots__/test_formatter_output.ambr +++ b/tests/test_formatter/__snapshots__/test_formatter_output.ambr @@ -1,6 +1,146 @@ # serializer version: 1 # name: test_formatter[default_colors-cli_options0-regular] ''' + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 tests/fixtures/formatter/formatter1.py 1:1 WPS111 Found too short name: s < 2 @@ -20,6 +160,146 @@ # --- # name: test_formatter[default_colors-cli_options1-regular_statistic] ''' + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 tests/fixtures/formatter/formatter1.py 1:1 WPS111 Found too short name: s < 2 @@ -60,6 +340,146 @@ # --- # name: test_formatter[default_colors-cli_options2-with_source] ''' + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 tests/fixtures/formatter/formatter1.py @@ -100,6 +520,146 @@ # --- # name: test_formatter[default_colors-cli_options3-with_links] ''' + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 tests/fixtures/formatter/formatter1.py 1:1 WPS111 Found too short name: s < 2 @@ -126,6 +686,146 @@ # --- # name: test_formatter[default_colors-cli_options4-with_source_statistic] ''' + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 tests/fixtures/formatter/formatter1.py @@ -187,6 +887,146 @@ # --- # name: test_formatter[default_colors-cli_options5-with_source_links] ''' + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 tests/fixtures/formatter/formatter1.py @@ -234,6 +1074,146 @@ # --- # name: test_formatter[default_colors-cli_options6-statistic_with_source] ''' + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 tests/fixtures/formatter/formatter1.py @@ -295,6 +1275,146 @@ # --- # name: test_formatter[with_colors-cli_options0-regular] ''' + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 tests/fixtures/formatter/formatter1.py 1:1 WPS111 Found too short name: s < 2 @@ -314,6 +1434,146 @@ # --- # name: test_formatter[with_colors-cli_options1-regular_statistic] ''' + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 tests/fixtures/formatter/formatter1.py 1:1 WPS111 Found too short name: s < 2 @@ -354,6 +1614,146 @@ # --- # name: test_formatter[with_colors-cli_options2-with_source] ''' + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 tests/fixtures/formatter/formatter1.py @@ -394,6 +1794,146 @@ # --- # name: test_formatter[with_colors-cli_options3-with_links] ''' + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 tests/fixtures/formatter/formatter1.py 1:1 WPS111 Found too short name: s < 2 @@ -420,6 +1960,146 @@ # --- # name: test_formatter[with_colors-cli_options4-with_source_statistic] ''' + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 tests/fixtures/formatter/formatter1.py @@ -481,6 +2161,146 @@ # --- # name: test_formatter[with_colors-cli_options5-with_source_links] ''' + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 tests/fixtures/formatter/formatter1.py @@ -528,6 +2348,146 @@ # --- # name: test_formatter[with_colors-cli_options6-statistic_with_source] ''' + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 tests/fixtures/formatter/formatter1.py @@ -589,6 +2549,146 @@ # --- # name: test_formatter[without_colors-cli_options0-regular] ''' + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 tests/fixtures/formatter/formatter1.py 1:1 WPS111 Found too short name: s < 2 @@ -608,6 +2708,146 @@ # --- # name: test_formatter[without_colors-cli_options1-regular_statistic] ''' + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 tests/fixtures/formatter/formatter1.py 1:1 WPS111 Found too short name: s < 2 @@ -648,6 +2888,146 @@ # --- # name: test_formatter[without_colors-cli_options2-with_source] ''' + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 tests/fixtures/formatter/formatter1.py @@ -688,6 +3068,146 @@ # --- # name: test_formatter[without_colors-cli_options3-with_links] ''' + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 tests/fixtures/formatter/formatter1.py 1:1 WPS111 Found too short name: s < 2 @@ -714,6 +3234,146 @@ # --- # name: test_formatter[without_colors-cli_options4-with_source_statistic] ''' + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 tests/fixtures/formatter/formatter1.py @@ -775,6 +3435,146 @@ # --- # name: test_formatter[without_colors-cli_options5-with_source_links] ''' + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 tests/fixtures/formatter/formatter1.py @@ -822,6 +3622,146 @@ # --- # name: test_formatter[without_colors-cli_options6-statistic_with_source] ''' + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 tests/fixtures/formatter/formatter1.py @@ -882,79 +3822,620 @@ ''' # --- # name: test_formatter_correct[with_colors-cli_options0-regular] - '' + ''' + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + ''' # --- # name: test_formatter_correct[with_colors-cli_options1-regular_statistic] ''' All errors: 0 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 ''' # --- # name: test_formatter_correct[with_colors-cli_options2-with_source] - '' + ''' + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + ''' # --- # name: test_formatter_correct[with_colors-cli_options3-with_links] - '' + ''' + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + ''' # --- # name: test_formatter_correct[with_colors-cli_options4-with_source_statistic] ''' All errors: 0 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 ''' # --- # name: test_formatter_correct[with_colors-cli_options5-with_source_links] - '' + ''' + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + ''' # --- # name: test_formatter_correct[with_colors-cli_options6-statistic_with_source] ''' All errors: 0 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 ''' # --- # name: test_formatter_correct[without_colors-cli_options0-regular] - '' + ''' + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + ''' # --- # name: test_formatter_correct[without_colors-cli_options1-regular_statistic] ''' All errors: 0 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 ''' # --- # name: test_formatter_correct[without_colors-cli_options2-with_source] - '' + ''' + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + ''' # --- # name: test_formatter_correct[without_colors-cli_options3-with_links] - '' + ''' + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + ''' # --- # name: test_formatter_correct[without_colors-cli_options4-with_source_statistic] ''' All errors: 0 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 ''' # --- # name: test_formatter_correct[without_colors-cli_options5-with_source_links] - '' + ''' + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + ''' # --- # name: test_formatter_correct[without_colors-cli_options6-statistic_with_source] ''' All errors: 0 + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 ''' # --- # name: test_ipynb ''' + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 tests/fixtures/notebook.ipynb 8:1 WPS111 Found too short name: s < 2 @@ -967,6 +4448,41 @@ Full list of violations and explanations: https://wemake-python-styleguide.rtfd.io/en/xx.xx/pages/usage/violations/ + self._collectors: + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :4 + init : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/pytest_cov/embed.py:59 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 + + _find_and_load : :1360 + _find_and_load_unlocked : :1331 + _load_unlocked : :935 + exec_module : :1176 + : :635 + main : :618 + venv : :550 + addsitepackages : :405 + addsitedir : :247 + addpackage : :206 + : :1 + : :6 + process_startup : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:1461 + start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:689 + _init_for_start : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/control.py:588 + __init__ : /Users/aleksandrzdanov/Library/Caches/pypoetry/virtualenvs/wemake-python-styleguide-_-6FLFD--py3.12/lib/python3.12/site-packages/coverage/collector.py:124 ''' # --- diff --git a/tests/test_visitors/test_ast/test_conditions/test_match_conditions.py b/tests/test_visitors/test_ast/test_conditions/test_match_conditions.py new file mode 100644 index 000000000..89bab6e76 --- /dev/null +++ b/tests/test_visitors/test_ast/test_conditions/test_match_conditions.py @@ -0,0 +1,167 @@ +import pytest + +from wemake_python_styleguide.violations.consistency import ( + SimplifiableSequenceOrMappingMatchViolation, +) +from wemake_python_styleguide.visitors.ast.conditions import ( + SimplifiableSequenceOrMappingMatchVisitor, +) + +# Wrong: +simple_sequence = """ +match data: + case {0}: + pass + case _: + pass +""" + +simple_mapping = """ +match data: + case {0}: + pass + case _: + pass +""" + + +# Correct: +binding_sequence = """ +match data: + case [x]: + pass + case _: + pass +""" + +starred_sequence = """ +match data: + case [1, *rest]: + pass + case _: + pass +""" + +starred_mapping = """ +match data: + case {'x': 1, **value}: + pass + case _: + pass +""" + +mapping_with_binding = """ +match data: + case {"x": value}: + pass + case _: + pass +""" + +with_guard = """ +match data: + case [1, 2] if flag: + pass + case _: + pass +""" + +as_binding = """ +match data: + case [1, 2] as x: + pass + case _: + pass +""" + +complex_sequence = """ +match data: + case [1, [3, 4]]: + pass + case _: + pass +""" + +complex_name = """ +match data: + case [some_var]: + pass + case _: + pass +""" + +three_cases = """ +match data: + case [1]: + pass + case [2]: + pass + case _: + pass +""" + + +@pytest.mark.parametrize( + 'code', + [ + [1, 'a'], + [2, 3], + ['x', 'y'], + ], +) +def test_simplifiable_sequence_match_violation( + code, assert_errors, parse_ast_tree, default_options +): + """Test that simple sequence match raises a violation.""" + tree = parse_ast_tree(simple_sequence.format(code)) + visitor = SimplifiableSequenceOrMappingMatchVisitor( + default_options, tree=tree + ) + visitor.run() + assert_errors(visitor, [SimplifiableSequenceOrMappingMatchViolation]) + + +@pytest.mark.parametrize( + 'code', + [ + {'a': 1}, + {'x': 2, 'y': 3}, + {4: 'b'}, + ], +) +def test_simplifiable_mapping_match_violation( + code, assert_errors, parse_ast_tree, default_options +): + """Test that simple mapping match raises a violation.""" + tree = parse_ast_tree(simple_mapping.format(code)) + visitor = SimplifiableSequenceOrMappingMatchVisitor( + default_options, tree=tree + ) + visitor.run() + assert_errors(visitor, [SimplifiableSequenceOrMappingMatchViolation]) + + +@pytest.mark.parametrize( + 'code', + [ + binding_sequence, + starred_sequence, + mapping_with_binding, + with_guard, + as_binding, + complex_sequence, + complex_name, + three_cases, + starred_mapping, + ], +) +def test_not_simplifiable_structural_match( + code, assert_errors, parse_ast_tree, default_options +): + """Test that complex or non-simplifiable matches do not raise violations.""" + tree = parse_ast_tree(code) + visitor = SimplifiableSequenceOrMappingMatchVisitor( + default_options, tree=tree + ) + visitor.run() + assert_errors(visitor, []) diff --git a/wemake_python_styleguide/logic/tree/pattern_matching.py b/wemake_python_styleguide/logic/tree/pattern_matching.py index bfb8f4e01..e7e638b69 100644 --- a/wemake_python_styleguide/logic/tree/pattern_matching.py +++ b/wemake_python_styleguide/logic/tree/pattern_matching.py @@ -45,60 +45,3 @@ def is_constant_subject(condition: ast.AST | list[ast.expr]) -> bool: and is_constant_subject(node.values) ) return False - - -def is_wildcard_pattern(case: ast.match_case) -> bool: - """Returns True only for `case _:`.""" - pattern = case.pattern - return ( - isinstance(pattern, ast.MatchAs) - and pattern.pattern is None - and pattern.name is None - ) - - -def is_simple_pattern(pattern: ast.pattern) -> bool: - """Returns True if the pattern is simple enough to replace with `==`.""" - return _is_simple_value_or_singleton(pattern) or _is_simple_composite( - pattern - ) - - -def _is_simple_composite(pattern: ast.pattern) -> bool: - """Returns True/False for MatchOr and MatchAs, None otherwise.""" - if isinstance(pattern, ast.MatchOr): - return all(is_simple_pattern(sub) for sub in pattern.patterns) - if isinstance(pattern, ast.MatchAs): - inner = pattern.pattern - return inner is not None and is_simple_pattern(inner) - return False - - -def _is_simple_value_or_singleton(pattern: ast.pattern) -> bool: - """ - Checks if a pattern is a simple literal or singleton. - - Supports: - - Single values: ``1``, ``"text"``, ``ns.CONST``. - - Singleton values: ``True``, ``False``, ``None``. - """ - if isinstance(pattern, ast.MatchSingleton): - return True - if isinstance(pattern, ast.MatchValue): - return isinstance( - pattern.value, (ast.Constant, ast.Name, ast.Attribute) - ) - return False - - -def is_irrefutable_binding(pattern: ast.pattern) -> bool: - """ - Returns True for patterns like ``case x:`` or ``case data:``. - - These always match and just bind the subject to a name. - """ - return ( - isinstance(pattern, ast.MatchAs) - and pattern.pattern is None - and pattern.name is not None - ) diff --git a/wemake_python_styleguide/logic/tree/simple_pattern_matching.py b/wemake_python_styleguide/logic/tree/simple_pattern_matching.py new file mode 100644 index 000000000..e026ad6c9 --- /dev/null +++ b/wemake_python_styleguide/logic/tree/simple_pattern_matching.py @@ -0,0 +1,94 @@ +import ast + + +def is_wildcard_pattern(case: ast.match_case) -> bool: + """Returns True only for `case _:`.""" + pattern = case.pattern + return ( + isinstance(pattern, ast.MatchAs) + and pattern.pattern is None + and pattern.name is None + ) + + +def is_simple_pattern(pattern: ast.pattern) -> bool: + """Returns True if the pattern is simple enough to replace with `==`.""" + return _is_simple_value_or_singleton(pattern) or _is_simple_composite( + pattern + ) + + +def _is_simple_composite(pattern: ast.pattern) -> bool: + """Returns True/False for MatchOr and MatchAs, None otherwise.""" + if isinstance(pattern, ast.MatchOr): + return all(is_simple_pattern(sub) for sub in pattern.patterns) + if isinstance(pattern, ast.MatchAs): + inner = pattern.pattern + return inner is not None and is_simple_pattern(inner) + return False + + +def _is_simple_value_or_singleton(pattern: ast.pattern) -> bool: + """ + Checks if a pattern is a simple literal or singleton. + + Supports: + - Single values: ``1``, ``"text"``, ``ns.CONST``. + - Singleton values: ``True``, ``False``, ``None``. + """ + if isinstance(pattern, ast.MatchSingleton): + return True + if isinstance(pattern, ast.MatchValue): + return isinstance( + pattern.value, (ast.Constant, ast.Name, ast.Attribute) + ) + return False + + +def is_irrefutable_binding(pattern: ast.pattern) -> bool: + """ + Returns True for patterns like ``case x:`` or ``case data:``. + + These always match and just bind the subject to a name. + """ + return ( + isinstance(pattern, ast.MatchAs) + and pattern.pattern is None + and pattern.name is not None + ) + + +def has_binding_or_starred_patterns(pattern: ast.pattern) -> bool: + """Returns True if the pattern binds any variables or uses *rest/**rest.""" + if isinstance(pattern, ast.MatchAs): + return pattern.name is not None + + if isinstance(pattern, ast.MatchSequence): + return any( + has_binding_or_starred_patterns(pattern) + for pattern in pattern.patterns + ) + + if isinstance(pattern, ast.MatchMapping): + return ( + any( + has_binding_or_starred_patterns(pattern) + for pattern in pattern.patterns + ) + or pattern.rest is not None + ) + + return bool(isinstance(pattern, ast.MatchStar)) + + +def is_simple_sequence_or_mapping_pattern(pattern: ast.pattern) -> bool: + """ + Check that all elements in sequence/mapping are simple. + + Simple is (literals, constants, names). + """ + if isinstance(pattern, ast.MatchSequence): + return all(is_simple_pattern(pattern) for pattern in pattern.patterns) + if isinstance(pattern, ast.MatchMapping): + return all(is_simple_pattern(pattern) for pattern in pattern.patterns) + return False diff --git a/wemake_python_styleguide/presets/types/tree.py b/wemake_python_styleguide/presets/types/tree.py index 8cb87565d..405e807fd 100644 --- a/wemake_python_styleguide/presets/types/tree.py +++ b/wemake_python_styleguide/presets/types/tree.py @@ -71,6 +71,7 @@ conditions.MatchVisitor, conditions.ChainedIsVisitor, conditions.SimplifiableMatchVisitor, + conditions.SimplifiableSequenceOrMappingMatchVisitor, conditions.LeakingForLoopVisitor, iterables.IterableUnpackingVisitor, blocks.AfterBlockVariablesVisitor, diff --git a/wemake_python_styleguide/violations/consistency.py b/wemake_python_styleguide/violations/consistency.py index dc0ac8a6f..c668b9690 100644 --- a/wemake_python_styleguide/violations/consistency.py +++ b/wemake_python_styleguide/violations/consistency.py @@ -2460,3 +2460,57 @@ class SimplifiableMatchViolation(ASTViolation): 'Found simplifiable `match` statement that can be just `if`' ) code = 365 + + +@final +class SimplifiableSequenceOrMappingMatchViolation(ASTViolation): + """ + Some ``match`` list/dict statements can be simplified to ``if`` statements. + + Reasoning: + Using ``match`` to check for an exact sequence (like ``[1, 2]``) + or mapping (like ``{"x": 1}``) + pattern with no destructuring is unnecessarily verbose. + Such cases are better expressed + with a direct equality comparison (``==``), + which is more readable and performant. + + While ``match`` excels at deconstruction and partial matching, + using it for full structural identity checks of literals is overkill. + + Solution: + Replace the ``match`` statement with an ``if/else``. + + When is this violation raised? + - There are exactly two cases, and the second is ``case _:``. + - The first case uses a simple sequence (e.g. ``[1, "a"]``) + or mapping (e.g. ``{"key": 1}``). + - No variable bindings (e.g. ``case [x]:``), + starred patterns (``*rest``),or keyword rest (``**extra``). + - No guards (``if ...``). + - All elements are literals, constants, or names (not expressions). + + + Example:: + + # Correct: + if data == [1, 2]: + handle_pair() + else: + ignore() + + # Wrong: + match + case [1, 2]: + handle_pair() + case _: + ignore() + + .. versionadded:: 1.5.0 + + """ + + error_template = ( + 'Found simplifiable sequence/mapping `match` that can be `if`' + ) + code = 366 diff --git a/wemake_python_styleguide/visitors/ast/conditions.py b/wemake_python_styleguide/visitors/ast/conditions.py index 0487facd0..cf276d5b0 100644 --- a/wemake_python_styleguide/visitors/ast/conditions.py +++ b/wemake_python_styleguide/visitors/ast/conditions.py @@ -10,7 +10,7 @@ compares, ifs, operators, - pattern_matching, + simple_pattern_matching, ) from wemake_python_styleguide.logic.walk import ( are_variables_deleted, @@ -211,12 +211,12 @@ def _check_simplifiable_match(self, node: ast.Match) -> None: if len(cases) == 2: first, second = cases - if not pattern_matching.is_wildcard_pattern(second): + if not simple_pattern_matching.is_wildcard_pattern(second): return - if pattern_matching.is_irrefutable_binding( + if simple_pattern_matching.is_irrefutable_binding( first.pattern - ) or pattern_matching.is_simple_pattern(first.pattern): + ) or simple_pattern_matching.is_simple_pattern(first.pattern): self.add_violation(consistency.SimplifiableMatchViolation(node)) @@ -249,3 +249,44 @@ def _check_for_loops(self, body: list[ast.stmt]) -> None: self.add_violation( best_practices.LeakingForLoopViolation(subnode), ) + + +@final +class SimplifiableSequenceOrMappingMatchVisitor(BaseNodeVisitor): + """ + Checks for ``match`` state that use simple sequence or mapping patterns. + + Without destructuring, which can be replaced with ``if``. + """ + + def visit_Match(self, node: ast.Match) -> None: + """Visit match statement.""" + self._check_simplifiable_structural_match(node) + self.generic_visit(node) + + def _check_simplifiable_structural_match(self, node: ast.Match) -> None: + cases = node.cases + if len(cases) == 2: + first, second = cases + + if not simple_pattern_matching.is_wildcard_pattern(second): + return + + if first.guard is not None: + return + + if simple_pattern_matching.has_binding_or_starred_patterns( + first.pattern + ): + return + + if isinstance( + first.pattern, (ast.MatchSequence, ast.MatchMapping) + ) and simple_pattern_matching.is_simple_sequence_or_mapping_pattern( + first.pattern + ): + self.add_violation( + consistency.SimplifiableSequenceOrMappingMatchViolation( + node + ) + )