diff options
author | Raphaël Barrois <raphael.barrois@polytechnique.org> | 2015-10-20 22:51:35 +0200 |
---|---|---|
committer | Raphaël Barrois <raphael.barrois@polytechnique.org> | 2015-10-20 22:53:45 +0200 |
commit | b9347efae7e2f04687863f54e8db7d9e10f9dc6a (patch) | |
tree | 0e3d93bcf81731825799d127b31fa09237ece330 | |
parent | 197555d3d0de4759ca9ad45d5986fdcc4aa4c15b (diff) | |
download | factory-boy-b9347efae7e2f04687863f54e8db7d9e10f9dc6a.tar factory-boy-b9347efae7e2f04687863f54e8db7d9e10f9dc6a.tar.gz |
examples: Fix make test (Closes #238)
Properly install dependencies from examples folders.
-rw-r--r-- | Makefile | 3 | ||||
-rw-r--r-- | examples/flask_alchemy/requirements.txt | 1 |
2 files changed, 2 insertions, 2 deletions
@@ -17,6 +17,7 @@ MONGOENGINE ?= 0.9 NEXT_MONGOENGINE = $(shell python -c "v='$(MONGOENGINE)'; parts=v.split('.'); parts[-1]=str(int(parts[-1])+1); print('.'.join(parts))") REQ_FILE = auto_dev_requirements_django$(DJANGO)_alchemy$(ALCHEMY)_mongoengine$(MONGOENGINE).txt +EXAMPLES_REQ_FILES = $(shell find $(EXAMPLES_DIR) -name requirements.txt) all: default @@ -29,7 +30,7 @@ install-deps: $(REQ_FILE) pip install --upgrade -r $< pip freeze -$(REQ_FILE): dev_requirements.txt requirements.txt +$(REQ_FILE): dev_requirements.txt requirements.txt $(EXAMPLES_REQ_FILES) grep --no-filename "^[^#-]" $^ | egrep -v "^(Django|SQLAlchemy|mongoengine)" > $@ echo "Django>=$(DJANGO),<$(NEXT_DJANGO)" >> $@ echo "SQLAlchemy>=$(ALCHEMY),<$(NEXT_ALCHEMY)" >> $@ diff --git a/examples/flask_alchemy/requirements.txt b/examples/flask_alchemy/requirements.txt index 3ee3e5e..fb675a9 100644 --- a/examples/flask_alchemy/requirements.txt +++ b/examples/flask_alchemy/requirements.txt @@ -1,3 +1,2 @@ --r ../../requirements.txt Flask Flask-SQLAlchemy |