Temporarily disable pytest error enforcement while emu-master-dev undergoes abseil-cpp
upgrade

Change-Id: Ieaa393e3fcf75a8b0357eab6fbb45aa6ad88a896
diff --git a/scripts/tasks/run_pytest_task.py b/scripts/tasks/run_pytest_task.py
index 833a2ee..172a057 100644
--- a/scripts/tasks/run_pytest_task.py
+++ b/scripts/tasks/run_pytest_task.py
@@ -89,7 +89,7 @@
         PYTEST_DIR / "cfg" / "netsim_tests.json",
     ]
     # TODO: Resolve Windows PyTest flakiness by increasing timeout threshold
-    if platform.system() != "Windows":
-      cmd.append("--failures_as_errors")
+    # TODO: Uncomment this line once abseil-lts upgrade topic is built in emu-master-dev postsubmit
+    # if platform.system() != "Windows": cmd.append("--failures_as_errors")
     run(cmd, get_default_environment(AOSP_ROOT), "e2e_pytests")
     return True