python_startup_script не будет запускаться - PullRequest
0 голосов
/ 06 апреля 2019

У меня есть следующий файл tasks.json в VS Code:

    {
    "version": "0.1.0",
    "command": "python",
    "isShellCommand": true,
    "showOutput": "always",
    "args": [
        "$PATH/dev_appserver.py",
        "--python_startup_script=$PATH/pydev_startup.py",
        "--automatic_restart=yes",
        "-A=my_project_name",
        "--max_module_instances=1",
        "--port=5001",
        "--host=localhost",
        "${workspaceRoot}/app.yaml"
    ]
}

Когда я запускаю сборку, она запускает все, кроме скрипта запуска python, я не вижу ошибок в консоли и при запуске скриптаСразу все нормально, это просто распечатка и выглядит так:

# import ptvsd
import sys
import os

print("Running my awesome startup script!")


# Assuming that pdvsd is located in the working folder
# sys.path.append(os.getcwd())
# Fee free to change the secret and port number
# ptvsd.enable_attach(address=('0.0.0.0', 3005))
# The debug server has started and you can now use VS Code to attach to the application for debugging
print("Google App Engine has started, ready to attach the debugger")

Любая подсказка, в чем я не прав?Спасибо!

...