-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moved docopt to requirements.txt and updated client/Makefile.
- Loading branch information
Showing
6 changed files
with
17 additions
and
589 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,7 @@ test: | |
|
||
coverage: | ||
coverage run manage.py test api celerytasks web | ||
coverage html | ||
|
||
flake8: | ||
flake8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Oops, something went wrong.