[ Web Proxy ]
URL:
Viewing: https://raw.githubusercontent.com/Pythoneryeah/vscode-python/main/python_files/tests/run_all.py [Back]  [Original]

# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.

# Replace the "." entry.
import os
import pathlib
import sys

sys.path[0] = os.fsdecode(pathlib.Path(__file__).parent.parent)

from tests.__main__ import main, parse_args  # noqa: E402

if __name__ == "__main__":
    mainkwargs, pytestargs = parse_args()
    ec = main(pytestargs, **mainkwargs)
    sys.exit(ec)

Web Proxy Viewer  |  New URL  |  Original Page