Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove pydevd workflow since we build these as part of CI now #1718

Merged
merged 1 commit into from
Nov 1, 2024

Remove pydevd workflow since we build these as part of CI now

b028e5c
Select commit
Loading
Failed to load commit list.
Merged

Remove pydevd workflow since we build these as part of CI now #1718

Remove pydevd workflow since we build these as part of CI now
b028e5c
Select commit
Loading
Failed to load commit list.
Azure Pipelines / debugpy-test failed Nov 1, 2024 in 27m 33s

Build #20241101.2 had test failures

Details

Tests

  • Failed: 66 (0.34%)
  • Passed: 16,099 (82.01%)
  • Other: 3,466 (17.66%)
  • Total: 19,631

Annotations

Check failure on line 16130 in Build log

See this annotation in the file changed.

@azure-pipelines azure-pipelines / debugpy-test

Build log #L16130

PowerShell exited with code '1'.

Check failure on line 1 in test_targets[script_args--8888-listen-code]

See this annotation in the file changed.

@azure-pipelines azure-pipelines / debugpy-test

test_targets[script_args--8888-listen-code]

EOFError: Ran out of input
Raw output
args = ['--listen', '8888', '-c', '123', 'ham', '--listen', ...]

    def parse(args):
        log.debug("Parsing argv: {0!r}", args)
        try:
            # Run the CLI parser in a subprocess, and capture its output.
>           output = subprocess.check_output(
                [sys.executable, "-u", cli_parser.strpath] + args
            )

tests\debugpy\server\test_cli.py:59: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
C:\hostedtoolcache\windows\Python\3.13.0\x64\Lib\subprocess.py:472: in check_output
    return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

input = None, capture_output = False, timeout = None, check = True
popenargs = (['D:\\a\\1\\s\\.tox\\py313\\Scripts\\python.EXE', '-u', 'C:\\Users\\VssAdministrator\\AppData\\Local\\Temp\\pytest-of-unknown\\pytest-0\\popen-gw0\\test_targets_script_args__88880\\cli_parser.py', '--listen', '8888', '-c', ...],)
kwargs = {'stdout': -1}
process = <Popen: returncode: 3221225794 args: ['D:\\a\\1\\s\\.tox\\py313\\Scripts\\py...>
stdout = b'', stderr = None, retcode = 3221225794

    def run(*popenargs,
            input=None, capture_output=False, timeout=None, check=False, **kwargs):
        """Run command with arguments and return a CompletedProcess instance.
    
        The returned instance will have attributes args, returncode, stdout and
        stderr. By default, stdout and stderr are not captured, and those attributes
        will be None. Pass stdout=PIPE and/or stderr=PIPE in order to capture them,
        or pass capture_output=True to capture both.
    
        If check is True and the exit code was non-zero, it raises a
        CalledProcessError. The CalledProcessError object will have the return code
        in the returncode attribute, and output & stderr attributes if those streams
        were captured.
    
        If timeout is given, and the process takes too long, a TimeoutExpired
        exception will be raised.
    
        There is an optional argument "input", allowing you to
        pass bytes or a string to the subprocess's stdin.  If you use this argument
        you may not also use the Popen constructor's "stdin" argument, as
        it will be used internally.
    
        By default, all communication is in bytes, and therefore any "input" should
        be bytes, and the stdout and stderr will be bytes. If in text mode, any
        "input" should be a string, and stdout and stderr will be strings decoded
        according to locale encoding, or by "encoding" if set. Text mode is
        triggered by setting any of text, encoding, errors or universal_newlines.
    
        The other arguments are the same as for the Popen constructor.
        """
        if input is not None:
            if kwargs.get('stdin') is not None:
                raise ValueError('stdin and input arguments may not both be used.')
            kwargs['stdin'] = PIPE
    
        if capture_output:
            if kwargs.get('stdout') is not None or kwargs.get('stderr') is not None:
                raise ValueError('stdout and stderr arguments may not be used '
                                 'with capture_output.')
            kwargs['stdout'] = PIPE
            kwargs['stderr'] = PIPE
    
        with Popen(*popenargs, **kwargs) as process:
            try:
                stdout, stderr = process.communicate(input, timeout=timeout)
            except TimeoutExpired as exc:
                process.kill()
                if _mswindows:
                    # Windows accumulates the output in a single blocking
                    # read() call run on child threads, with the timeout
                    # being done in a join() on those threads.  communicate()
                    # _after_ kill() is required to collect that and add it
                    # to the exception.
                    exc.stdout, exc.stderr = process.communicate()
  

Check failure on line 1 in test_shell_expansion[expand-launch(console=externalTerminal)-program]

See this annotation in the file changed.

@azure-pipelines azure-pipelines / debugpy-test

test_shell_expansion[expand-launch(console=externalTerminal)-program]

failed on setup with "worker 'gw5' crashed while running 'tests/debugpy/test_args.py::test_shell_expansion[expand-launch(console=externalTerminal)-program]'"
Raw output
worker 'gw5' crashed while running 'tests/debugpy/test_args.py::test_shell_expansion[expand-launch(console=externalTerminal)-program]'

Check failure on line 1 in test_targets[script_args--8888-connect-file]

See this annotation in the file changed.

@azure-pipelines azure-pipelines / debugpy-test

test_targets[script_args--8888-connect-file]

EOFError: Ran out of input
Raw output
args = ['--connect', '8888', 'spam.py', 'ham', '--listen', '--wait-for-client', ...]

    def parse(args):
        log.debug("Parsing argv: {0!r}", args)
        try:
            # Run the CLI parser in a subprocess, and capture its output.
>           output = subprocess.check_output(
                [sys.executable, "-u", cli_parser.strpath] + args
            )

tests\debugpy\server\test_cli.py:59: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
C:\hostedtoolcache\windows\Python\3.13.0\x64\Lib\subprocess.py:472: in check_output
    return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

input = None, capture_output = False, timeout = None, check = True
popenargs = (['D:\\a\\1\\s\\.tox\\py313\\Scripts\\python.EXE', '-u', 'C:\\Users\\VssAdministrator\\AppData\\Local\\Temp\\pytest-of-unknown\\pytest-0\\popen-gw0\\test_targets_script_args__88881\\cli_parser.py', '--connect', '8888', 'spam.py', ...],)
kwargs = {'stdout': -1}
process = <Popen: returncode: 3221225794 args: ['D:\\a\\1\\s\\.tox\\py313\\Scripts\\py...>
stdout = b'', stderr = None, retcode = 3221225794

    def run(*popenargs,
            input=None, capture_output=False, timeout=None, check=False, **kwargs):
        """Run command with arguments and return a CompletedProcess instance.
    
        The returned instance will have attributes args, returncode, stdout and
        stderr. By default, stdout and stderr are not captured, and those attributes
        will be None. Pass stdout=PIPE and/or stderr=PIPE in order to capture them,
        or pass capture_output=True to capture both.
    
        If check is True and the exit code was non-zero, it raises a
        CalledProcessError. The CalledProcessError object will have the return code
        in the returncode attribute, and output & stderr attributes if those streams
        were captured.
    
        If timeout is given, and the process takes too long, a TimeoutExpired
        exception will be raised.
    
        There is an optional argument "input", allowing you to
        pass bytes or a string to the subprocess's stdin.  If you use this argument
        you may not also use the Popen constructor's "stdin" argument, as
        it will be used internally.
    
        By default, all communication is in bytes, and therefore any "input" should
        be bytes, and the stdout and stderr will be bytes. If in text mode, any
        "input" should be a string, and stdout and stderr will be strings decoded
        according to locale encoding, or by "encoding" if set. Text mode is
        triggered by setting any of text, encoding, errors or universal_newlines.
    
        The other arguments are the same as for the Popen constructor.
        """
        if input is not None:
            if kwargs.get('stdin') is not None:
                raise ValueError('stdin and input arguments may not both be used.')
            kwargs['stdin'] = PIPE
    
        if capture_output:
            if kwargs.get('stdout') is not None or kwargs.get('stderr') is not None:
                raise ValueError('stdout and stderr arguments may not be used '
                                 'with capture_output.')
            kwargs['stdout'] = PIPE
            kwargs['stderr'] = PIPE
    
        with Popen(*popenargs, **kwargs) as process:
            try:
                stdout, stderr = process.communicate(input, timeout=timeout)
            except TimeoutExpired as exc:
                process.kill()
                if _mswindows:
                    # Windows accumulates the output in a single blocking
                    # read() call run on child threads, with the timeout
                    # being done in a join() on those threads.  communicate()
                    # _after_ kill() is required to collect that and add it
                    # to the exception.
                    exc.stdout, exc.stderr 

Check failure on line 1 in test_targets[script_args--8888-connect-module]

See this annotation in the file changed.

@azure-pipelines azure-pipelines / debugpy-test

test_targets[script_args--8888-connect-module]

EOFError: Ran out of input
Raw output
args = ['--connect', '8888', '-m', 'spam', 'ham', '--listen', ...]

    def parse(args):
        log.debug("Parsing argv: {0!r}", args)
        try:
            # Run the CLI parser in a subprocess, and capture its output.
>           output = subprocess.check_output(
                [sys.executable, "-u", cli_parser.strpath] + args
            )

tests\debugpy\server\test_cli.py:59: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
C:\hostedtoolcache\windows\Python\3.13.0\x64\Lib\subprocess.py:472: in check_output
    return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

input = None, capture_output = False, timeout = None, check = True
popenargs = (['D:\\a\\1\\s\\.tox\\py313\\Scripts\\python.EXE', '-u', 'C:\\Users\\VssAdministrator\\AppData\\Local\\Temp\\pytest-of-unknown\\pytest-0\\popen-gw0\\test_targets_script_args__88882\\cli_parser.py', '--connect', '8888', '-m', ...],)
kwargs = {'stdout': -1}
process = <Popen: returncode: 3221225794 args: ['D:\\a\\1\\s\\.tox\\py313\\Scripts\\py...>
stdout = b'', stderr = None, retcode = 3221225794

    def run(*popenargs,
            input=None, capture_output=False, timeout=None, check=False, **kwargs):
        """Run command with arguments and return a CompletedProcess instance.
    
        The returned instance will have attributes args, returncode, stdout and
        stderr. By default, stdout and stderr are not captured, and those attributes
        will be None. Pass stdout=PIPE and/or stderr=PIPE in order to capture them,
        or pass capture_output=True to capture both.
    
        If check is True and the exit code was non-zero, it raises a
        CalledProcessError. The CalledProcessError object will have the return code
        in the returncode attribute, and output & stderr attributes if those streams
        were captured.
    
        If timeout is given, and the process takes too long, a TimeoutExpired
        exception will be raised.
    
        There is an optional argument "input", allowing you to
        pass bytes or a string to the subprocess's stdin.  If you use this argument
        you may not also use the Popen constructor's "stdin" argument, as
        it will be used internally.
    
        By default, all communication is in bytes, and therefore any "input" should
        be bytes, and the stdout and stderr will be bytes. If in text mode, any
        "input" should be a string, and stdout and stderr will be strings decoded
        according to locale encoding, or by "encoding" if set. Text mode is
        triggered by setting any of text, encoding, errors or universal_newlines.
    
        The other arguments are the same as for the Popen constructor.
        """
        if input is not None:
            if kwargs.get('stdin') is not None:
                raise ValueError('stdin and input arguments may not both be used.')
            kwargs['stdin'] = PIPE
    
        if capture_output:
            if kwargs.get('stdout') is not None or kwargs.get('stderr') is not None:
                raise ValueError('stdout and stderr arguments may not be used '
                                 'with capture_output.')
            kwargs['stdout'] = PIPE
            kwargs['stderr'] = PIPE
    
        with Popen(*popenargs, **kwargs) as process:
            try:
                stdout, stderr = process.communicate(input, timeout=timeout)
            except TimeoutExpired as exc:
                process.kill()
                if _mswindows:
                    # Windows accumulates the output in a single blocking
                    # read() call run on child threads, with the timeout
                    # being done in a join() on those threads.  communicate()
                    # _after_ kill() is required to collect that and add it
                    # to the exception.
                    exc.stdout, exc.stderr = process.communicate()