Skip to content

Commit

Permalink
Merge branch 'develop' of github.com:rbanffy/testable_appengine into …
Browse files Browse the repository at this point in the history
…develop

Conflicts:
	resources/requirements.txt
  • Loading branch information
rbanffy committed Nov 26, 2014
2 parents 23bd189 + 000a384 commit 7b0e6dc
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ directories:
mkdir -p $(CURDIR)/build $(CURDIR)/cache

appenginesdk: directories
wget -c http://commondatastorage.googleapis.com/appengine-sdks/featured/google_appengine_$(version).zip -O $(CURDIR)/cache/google_appengine_$(version).zip
wget -c https://storage.googleapis.com/appengine-sdks/featured/google_appengine_$(version).zip -O $(CURDIR)/cache/google_appengine_$(version).zip
unzip -q -o $(CURDIR)/cache/google_appengine_$(version).zip -d $(CURDIR)/build

requirements:
Expand All @@ -25,8 +25,6 @@ libraries: requirements appenginesdk
cp $(CURDIR)/resources/autogenerated $(CURDIR)/$(VENV)/lib/python2.7/site-packages/gae.pth
echo "$(CURDIR)/$(VENV)/lib/google_appengine/" >> $(CURDIR)/$(VENV)/lib/python2.7/site-packages/gae.pth
echo "import dev_appserver; dev_appserver.fix_sys_path()" >> $(CURDIR)/$(VENV)/lib/python2.7/site-packages/gae.pth
cp $(CURDIR)/resources/autogenerated $(CURDIR)/$(VENV)/lib/python2.7/site-packages/utils.pth
echo "$(CURDIR)/resources/lib/" >> $(CURDIR)/$(VENV)/lib/python2.7/site-packages/utils.pth

virtualenv:
virtualenv $(CURDIR)/$(VENV)
Expand All @@ -51,3 +49,6 @@ clean_cache:
# Deletes the virtualenv
clean_venv: clean_dirs
rm -rf $(CURDIR)/$(VENV)

test: venv
.env/bin/nosetests

0 comments on commit 7b0e6dc

Please sign in to comment.