Skip to content
This repository has been archived by the owner on Nov 30, 2021. It is now read-only.

Commit

Permalink
Moved docopt to requirements.txt and updated client/Makefile.
Browse files Browse the repository at this point in the history
  • Loading branch information
mboersma committed Jul 25, 2013
1 parent bc03426 commit 8908fd5
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 589 deletions.
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ test:

coverage:
coverage run manage.py test api celerytasks web
coverage html

flake8:
flake8
4 changes: 3 additions & 1 deletion celerytasks/util.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@

import StringIO
import paramiko
import select
import socket
import time

import paramiko


def connect_ssh(username, hostname, port, key):
key_f = StringIO.StringIO(key)
Expand Down
17 changes: 11 additions & 6 deletions client/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
# Run "pip install pep8" to enable PEP8 code style checking with "make pep8"
pep8:
pep8 deis

# Run "pip install pyflakes" to enable pyflakes checking with "make pyflakes"
pyflakes:
pyflakes deis
# Install deis client locally through pip.
install:
pip install deis

# Remove the installed copy of the deis client through pip.
uninstall:
pip uninstall -y deis

# Clean up after setup.py droppings.
clean:
rm -rf build/ dist/ *.egg-info
Loading

0 comments on commit 8908fd5

Please sign in to comment.