wide-energy-11069
09/05/2019, 8:53 PMdiff --git a/src/python/pants/backend/python/rules/python_test_runner.py b/src/python/pants/backend/python/rules/python_test_runner.py
index 3644869..cd8613e 100644
--- a/src/python/pants/backend/python/rules/python_test_runner.py
+++ b/src/python/pants/backend/python/rules/python_test_runner.py
@@ -124,7 +124,7 @@ def run_python_test(test_target, pytest, python_setup, source_root_config, subpr
status = Status.SUCCESS if result.exit_code == 0 else Status.FAILURE
yield TestResult(
- status=status,
+ status=Status.FAILURE,
stdout=result.stdout.decode(),
stderr=result.stderr.decode(),
)
but ./pants test examples/tests/python/example_test/hello/greet/ --cache-test-ignore
still exits 0. is the v2 python_test_runner used at all?witty-crayon-22786
09/05/2019, 8:56 PMwitty-crayon-22786
09/05/2019, 8:56 PM