From aef42336e626245c4bdc71255c0bb98c41dc52ac Mon Sep 17 00:00:00 2001 From: Janne Sinivirta Date: Fri, 6 Oct 2017 14:12:23 +0300 Subject: [PATCH] fixes to README.md - Fix the command for running unit tests - Add command to run backtest unit tests --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 9d4c457d8..3a2101d64 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,12 @@ There is also an [article](https://www.sales4k.com/blockchain/high-frequency-tra #### Execute tests ``` -$ python setup.py test +$ pytest +``` +This will by default skip the slow running backtest set. To run backtest set: + +``` +$ BACKTEST=true pytest ``` #### Docker