9228ad83a3ecde2fb5a714d1eb43c7c1ee2e200b,src/python/pants/backend/python/lint/black/rules_integration_test.py,BlackIntegrationTest,run_black,#,46

Before Change


        )
        input_snapshot = self.request_single_product(
            Snapshot,
            DirectoriesToMerge(
                tuple(target.adaptor.sources.snapshot.directory_digest for target in targets)
            ),
        )
        fmt_result = self.request_single_product(
            FmtResult,

After Change


        if skip:
            args.append(f"--black-skip")
        options_bootstrapper = create_options_bootstrapper(args=args)
        configs = [BlackConfiguration.create(tgt) for tgt in targets]
        lint_result = self.request_single_product(
            LintResult, Params(BlackConfigurations(configs), options_bootstrapper)
        )
        input_snapshot = self.request_single_product(
            SourceFiles,
            Params(
                AllSourceFilesRequest(config.sources for config in configs), options_bootstrapper
            ),
        )
        fmt_result = self.request_single_product(
            FmtResult,
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 13

Instances


Project Name: pantsbuild/pants
Commit Name: 9228ad83a3ecde2fb5a714d1eb43c7c1ee2e200b
Time: 2020-04-15
Author: 14852634+Eric-Arellano@users.noreply.github.com
File Name: src/python/pants/backend/python/lint/black/rules_integration_test.py
Class Name: BlackIntegrationTest
Method Name: run_black


Project Name: pantsbuild/pants
Commit Name: 9228ad83a3ecde2fb5a714d1eb43c7c1ee2e200b
Time: 2020-04-15
Author: 14852634+Eric-Arellano@users.noreply.github.com
File Name: src/python/pants/backend/python/lint/isort/rules_integration_test.py
Class Name: IsortIntegrationTest
Method Name: run_isort


Project Name: pantsbuild/pants
Commit Name: 9228ad83a3ecde2fb5a714d1eb43c7c1ee2e200b
Time: 2020-04-15
Author: 14852634+Eric-Arellano@users.noreply.github.com
File Name: src/python/pants/backend/python/lint/docformatter/rules_integration_test.py
Class Name: DocformatterIntegrationTest
Method Name: run_docformatter