Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2013-01-30 12:34:29 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2013-01-30 12:34:29 (GMT)
commit88f63f61843ae0938faa8078ebfa47f6ffe86f6f (patch)
tree67c243d5f41084440877819c809bbaf652df4794
parentda25a22e1a25a0baff8aa9ea72a54078e6a95f10 (diff)
Add sandbox target
To run fab in.
-rw-r--r--.gitignore1
-rw-r--r--Makefile5
2 files changed, 6 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index 497175f..efdc6b3 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
*.pyc
sync.path
modules
+sandbox
diff --git a/Makefile b/Makefile
index a60f7aa..6507f86 100644
--- a/Makefile
+++ b/Makefile
@@ -1,3 +1,8 @@
+sandbox:
+ virtualenv sandbox && \
+ . sandbox/bin/activate && \
+ pip install fabric
+
check:
pep8 $(CURDIR)
pylint --reports=n --disable=C,W,R,E,F --enable=W0611 \