Add support for deploying via dockerflow pipeline. (#90) r=vladikoff

This commit is contained in:
Ryan Kelly
2017-05-26 11:44:36 +10:00
committed by Vlad Filippov
parent 7fe5c0fafc
commit 72d618f3ee
8 changed files with 181 additions and 50 deletions

View File

@@ -31,7 +31,7 @@ test: | $(TOOLS)
# Tokenserver tests currently broken due to incorrect file paths
# $(ENV)/bin/nosetests -s tokenserver.tests
# Test against a running server
# Test against a running server.
$(ENV)/bin/gunicorn --paste syncserver/tests.ini 2> /dev/null & SERVER_PID=$$!; \
sleep 2; \
$(ENV)/bin/python -m syncstorage.tests.functional.test_storage \
@@ -39,7 +39,7 @@ test: | $(TOOLS)
kill $$SERVER_PID
$(TOOLS): | $(ENV)/COMPLETE
$(INSTALL) nose flake8
$(INSTALL) -r dev-requirements.txt
.PHONY: serve
serve: | $(ENV)/COMPLETE