ad2a5aff09be0fbe529d34c9a54ccd849a909377,src/python/pants/rules/core/test_test.py,TestTest,test_multiple_debug_targets_fail,#TestTest#,245

Before Change


        with pytest.raises(ResolveError):
            self.run_test_rule(
                test_runner=SuccessfulTestRunner,
                targets=[
                    FmtTest.make_hydrated_target_with_origin(name="t1"),
                    FmtTest.make_hydrated_target_with_origin(name="t2"),
                ],
                debug=True,
            )

After Change


        with pytest.raises(ResolveError):
            self.run_test_rule(
                config=SuccessfulConfiguration,
                targets=[
                    self.make_target_with_origin(Address.parse(":t1")),
                    self.make_target_with_origin(Address.parse(":t2")),
                ],
                debug=True,
            )
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 5

Instances


Project Name: pantsbuild/pants
Commit Name: ad2a5aff09be0fbe529d34c9a54ccd849a909377
Time: 2020-04-09
Author: 14852634+Eric-Arellano@users.noreply.github.com
File Name: src/python/pants/rules/core/test_test.py
Class Name: TestTest
Method Name: test_multiple_debug_targets_fail


Project Name: pantsbuild/pants
Commit Name: ad2a5aff09be0fbe529d34c9a54ccd849a909377
Time: 2020-04-09
Author: 14852634+Eric-Arellano@users.noreply.github.com
File Name: src/python/pants/rules/core/test_test.py
Class Name: TestTest
Method Name: test_single_target


Project Name: pantsbuild/pants
Commit Name: ad2a5aff09be0fbe529d34c9a54ccd849a909377
Time: 2020-04-09
Author: 14852634+Eric-Arellano@users.noreply.github.com
File Name: src/python/pants/rules/core/test_test.py
Class Name: TestTest
Method Name: test_multiple_targets