From 5f1b9943d1667b3e6148f21a4a6f500a9c834346 Mon Sep 17 00:00:00 2001 From: Samuel Husso Date: Sun, 17 Dec 2017 11:55:34 +0200 Subject: [PATCH] add smoke tests to run a round of hyperopt and backtesting --- .travis.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 37bd480a0..c6438b544 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,8 +17,14 @@ install: - export LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH - pip install flake8 coveralls - pip install -r requirements.txt -script: -- pytest --cov=freqtrade --cov-config=.coveragerc freqtrade/tests/ +jobs: + include: + - stage: test + - pytest --cov=freqtrade --cov-config=.coveragerc freqtrade/tests/ + - stage: hyperopt + - python freqtrade/main.py hyperopt -e 5 + - stage: backtesting + - python freqtrade/main.py backtesting after_success: - flake8 freqtrade && coveralls notifications: