Skip to content

Commit

Permalink
Workaround to ensure mock package is installed.
Browse files Browse the repository at this point in the history
  • Loading branch information
Wenbin Fang committed Apr 19, 2016
1 parent 5e562d7 commit a2b9fb9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ init:
test:
make install
make flake8
$(SOURCE_VENV) && $(PYTHON) setup.py test
# Hacky way to ensure mock is installed before running setup.py
$(SOURCE_VENV) && pip install mock==1.1.2 && $(PYTHON) setup.py test

install:
make init
Expand Down

0 comments on commit a2b9fb9

Please sign in to comment.