chromium/third_party/blink/tools/run_slow_test_analyzer.py

#!/usr/bin/env vpython3
# Copyright 2023 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

from blinkpy.web_tests.web_test_analyzers import slow_test_analyzer

import sys

if __name__ == '__main__':
    rc = slow_test_analyzer.main()
    sys.exit(rc)