简体   繁体   中英

How do you set up Pycharm to debug a Fabric fabfile on Windows?

Is is possible to set up Pycharm to step through aa Fabric fabfile.py?

It seems like this would be doable with the run/debug configuration editor but I can't seem to get the settings just right. The editor is asking for a script to run and I've tried the fab-script.py file it is just giving me the fab help options.

It seems like I'm close but not quite there.

Here is how I ended up setting this up in case this is useful for someone else. As with most things like this, once you know the magic settings, it was very easy. All these instructions are through PyCharm but several of them can be done in alternate ways. However, since this is about debugging in PyCharm, that's what I'm using for the instructions. Also, I'm using Windows.

Install Fabric package to the project environment (using the Settings-->Project Interpreter package installation). This installs Fabric to the virtual environment's site package folder as well as putting a fab.exe and fab-script.py file in the /Scripts folder. Find the location of the fab-scripts.py file and copy the path (something like this “C:\\\\Scripts\\fab-script.py”)

Now, create a run configuration (Run --> Edit Configuration… --> Python) with this script file name. The Script parameters point to the fabfile.py and the command to execute/debug. The Script parameters are: -f fabfile dev:"MyBranch1" deploy This allows me to debug the “dev” task with a “MyBranch1” parameter then run the “deploy” task. Replace the dev:"MyBranch1" deploy with whatever your task name is. The Working directory points to your project folder which is also where the fabfile.py is located (at least with my configuration). My setup looks like this.
运行调试配置

Open the fabfile.py and put a breakpoint where you would like to stop the debugger. In this case, since I'm debugging the deploy task, I put the breakpoint there.在此处输入图片说明

Now to debug the fab run, set the active configuration to the one just made and click debug.在此处输入图片说明

When the breakpoint is hit, you are off and debugging your fabric fabfile.py with PyCharm

When you are ready to run your debugged fabfile, open the Terminal and run the fab command with the parameters used in the debugging. Again, point the command prompt at the project (working) directory. (NOTE: The fab.exe in the Scripts folder needs to be executable from the command line – by having it in the environment variables path property) 在此处输入图片说明

I followed the instructions above in the screenshots. Please be aware that fab-script above should contain:

import fabric.main

if __name__ == '__main__':
    fabric.main.main()

The fab executable is nothing but a simple python script. For example, with Fabric 1.10.2 it is just this (although I skipped the shebang and encoding lines):

import re
import sys

from fabric.main import main

if __name__ == '__main__':
    sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
    sys.exit(main())

ie: all it is really doing is calling fabric.main.main() . I'm not sure why it is subbing out the windows extensions in sys.argv[0] , but it doesn't really matter.

If you want to debug a fabfile, either just set the fab.py file as the script to be debugged by your IDE, or make a little stub file that calls fabric's main() and debug that. You can then put breakpoints anywhere in your fabfile, (or anything your fabfile imports) as you would with any other python program.

Aside from this, the main part you need is to be able to pass arguments to the executed script so that they show up in sys.argv . How to do this depends on your IDE/debugger. Or, you could just jam them in yourself, something like this:

import sys
from fabric.main import main

sys.argv[1:] = ["task1",."task2"] #or whatever you would give fab.
main()

Using your IDE/debugger method is much better, of course.

for fabric2(2.5) add those code to fabfile.py and debug it as a python script:

if __name__ == '__main__':
    from fabric.main import make_program
    make_program().run("fab [your_task]"

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM