From 0ec03db0fb9480e19d6b40098cf3b141fdc4ac15 Mon Sep 17 00:00:00 2001 From: Hsiao-Wei Wang Date: Mon, 27 May 2019 18:48:40 +0800 Subject: [PATCH] test --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e40c7e95c..ee648f855 100644 --- a/Makefile +++ b/Makefile @@ -54,7 +54,9 @@ install_deposit_contract_test: test_deposit_contract: $(PY_SPEC_ALL_TARGETS) cd $(PY_SPEC_DIR); python3 -m venv venv; . venv/bin/activate; \ - cd ../.. && cd $(DEPOSIT_CONTRACT_DIR) && python -m pytest . + cd ../.. && cd $(DEPOSIT_CONTRACT_DIR); \ + pip3 install -r requirements-testing.txt; \ + python -m pytest . # "make pyspec" to create the pyspec for all phases. pyspec: $(PY_SPEC_ALL_TARGETS)