playing with the code a bit more ``` diff --git a/...
# development
w
playing with the code a bit more
Copy code
diff --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?
w
the v2 pytest runner runs 99% of pants' python unit tests in travis (remotely, no less!)
💯 1
(thanks to Eric's work atop the remoting stack and stuff we did last Q4 for python pipeline porting)
❤️ 1