diff --git a/benchmarks/basic_commands.py b/benchmarks/basic_commands.py
index a7c85beeb36d6700fa8609d6c6b028ecf1b394b5_YmVuY2htYXJrcy9iYXNpY19jb21tYW5kcy5weQ==..51f15cf93d185c97d6c69e0972b26673ae5bb89c_YmVuY2htYXJrcy9iYXNpY19jb21tYW5kcy5weQ== 100644
--- a/benchmarks/basic_commands.py
+++ b/benchmarks/basic_commands.py
@@ -227,15 +227,15 @@
             # Ignore the return code
             return self._timeit(self._single_execute, (cmd, False))
 
-    def track_push(self, *args, **kwargs):
-        def clone_and_push():
-            with self.clone_from_cache() as clone_path:
-                cmd = [self.hgpath, '--cwd', self.repo_path, 'push', '-f',
-                       clone_path]
-                if self.revset:
-                    cmd.extend(['-r', 'default'])
-                return self._single_execute(cmd, False)
-        return self._timeit(clone_and_push)
+    # def track_push(self, *args, **kwargs):
+    #     def clone_and_push():
+    #         with self.clone_from_cache() as clone_path:
+    #             cmd = [self.hgpath, '--cwd', self.repo_path, 'push', '-f',
+    #                    clone_path]
+    #             if self.revset:
+    #                 cmd.extend(['-r', 'default'])
+    #             return self._single_execute(cmd, False)
+    #     return self._timeit(clone_and_push)
 
 
 # class CloneTrackSuite(BaseTrackTestSuite):