Ronan Amicel
Ronan Amicel
The nose plugin registration was removed from Pylons' own `setup.py` in this commit: da8c00cabc62ad7d6f3dc19ce75ad6a4025d39c0 A workaround is to add it to your own project's `setup.py`: ``` entry_points=""" [nose.plugins] pylons =...
Hi @tony! I've been using Saltstack a lot lately, including in combination with Fabric. For example, I wrote some Fabric tasks to bootstrap a Salt master or a Salt minion....
Hi Chris, Here is one way I would do this with the existing fabtools primitives: ``` python from fabtools.file import watch from fabtools import require @task def deploy(): with watch('requirements.txt')...
Do you use git to deploy the code? Then you could ask git the list of files that are about to be changed, and check if there are any images...
Thanks for the report. The code in fabtools attempts to quote the password (see https://github.com/ronnix/fabtools/blob/master/fabtools/mysql.py#L33), but it looks like it is not enough. :(
Thanks for the report! In what case do you want to be in detached head mode? (Just want to better understand the use case...)
Thanks! Like many projects, we try to follow the PEP8 coding standard, see http://www.python.org/dev/peps/pep-0008/ I'll add some line comments to highlight possible improvements.
+1 :-)
Unfortunately I haven't been able to allocate time for Fabtools lately. The project needs more love and care than I can provide alone, so I'd be happy to have other...
Thanks everyone for offering your help!