Problem: make test doesn't run tests (#2234)

Solution: patch Makefile to be compatible with the new integration
testing suite. Fix #2230
This commit is contained in:
vrde 2018-04-25 09:40:45 +02:00 committed by Vanshdeep Singh
parent 65bb6e5c91
commit e90b5fa5f2

View File

@ -68,7 +68,8 @@ logs: check-deps ## Attach to the logs
@$(DC) logs -f bigchaindb
test: check-deps ## Run all tests once
@$(DC) run --rm bigchaindb pytest -v
@$(DC) up -d bdb
@$(DC) exec bigchaindb pytest
test-watch: check-deps ## Run all tests and wait. Every time you change code, tests will be run again
@$(DC) run --rm bigchaindb pytest -f -v