d161013912e98279f6a1458228ba42882f618c6e,src/python/pants/backend/python/lint/bandit/rules_integration_test.py,BanditIntegrationTest,rules,#Any#,35
Before Change
@classmethod
def rules(cls):
return (
*super().rules(),
*bandit_rules(),
*download_pex_bin.rules(),
*pex.rules(),
*python_native_code.rules(),
*subprocess_environment.rules(),
RootRule(BanditTarget),
)
def run_bandit(
self,
source_files: List[FileContent],
After Change
@classmethod
def rules(cls):
return (*super().rules(), *bandit_rules(), RootRule(BanditTarget))
def run_bandit(
self,
source_files: List[FileContent],
In pattern: SUPERPATTERN
Frequency: 4
Non-data size: 14
Instances
Project Name: pantsbuild/pants
Commit Name: d161013912e98279f6a1458228ba42882f618c6e
Time: 2020-02-03
Author: ericarellano@me.com
File Name: src/python/pants/backend/python/lint/bandit/rules_integration_test.py
Class Name: BanditIntegrationTest
Method Name: rules
Project Name: pantsbuild/pants
Commit Name: d161013912e98279f6a1458228ba42882f618c6e
Time: 2020-02-03
Author: ericarellano@me.com
File Name: src/python/pants/backend/python/lint/flake8/rules_integration_test.py
Class Name: Flake8IntegrationTest
Method Name: rules
Project Name: pantsbuild/pants
Commit Name: d161013912e98279f6a1458228ba42882f618c6e
Time: 2020-02-03
Author: ericarellano@me.com
File Name: src/python/pants/backend/python/lint/black/rules_integration_test.py
Class Name: BlackIntegrationTest
Method Name: rules
Project Name: pantsbuild/pants
Commit Name: d161013912e98279f6a1458228ba42882f618c6e
Time: 2020-02-03
Author: ericarellano@me.com
File Name: src/python/pants/backend/python/lint/isort/rules_integration_test.py
Class Name: IsortIntegrationTest
Method Name: rules