Skip to content

Commit 8908fd5

Browse files
committed
Moved docopt to requirements.txt and updated client/Makefile.
1 parent bc03426 commit 8908fd5

6 files changed

Lines changed: 17 additions & 589 deletions

File tree

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ test:
1010

1111
coverage:
1212
coverage run manage.py test api celerytasks web
13+
coverage html
1314

1415
flake8:
1516
flake8

celerytasks/util.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1+
12
import StringIO
2-
import paramiko
33
import select
44
import socket
55
import time
66

7+
import paramiko
8+
79

810
def connect_ssh(username, hostname, port, key):
911
key_f = StringIO.StringIO(key)

client/Makefile

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
1-
# Run "pip install pep8" to enable PEP8 code style checking with "make pep8"
2-
pep8:
3-
pep8 deis
41

5-
# Run "pip install pyflakes" to enable pyflakes checking with "make pyflakes"
6-
pyflakes:
7-
pyflakes deis
2+
# Install deis client locally through pip.
3+
install:
4+
pip install deis
5+
6+
# Remove the installed copy of the deis client through pip.
7+
uninstall:
8+
pip uninstall -y deis
9+
10+
# Clean up after setup.py droppings.
11+
clean:
12+
rm -rf build/ dist/ *.egg-info

0 commit comments

Comments
 (0)