From 21a11f55891c177d2dcb357bc5f61a6dd73a0929 Mon Sep 17 00:00:00 2001 From: Janne Sinivirta Date: Sun, 17 Dec 2017 14:45:31 +0200 Subject: [PATCH] run pytest, hyperopt and backtesting in parallel --- .travis.yml | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/.travis.yml b/.travis.yml index 24c5b2a4c..1d9d14a80 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,15 +19,9 @@ install: - pip install -r requirements.txt jobs: include: - - stage: test - script: - - pytest --cov=freqtrade --cov-config=.coveragerc freqtrade/tests/ - - stage: hyperopt - script: - - python freqtrade/main.py hyperopt -e 5 - - stage: backtesting - script: - - python freqtrade/main.py backtesting + - script: pytest --cov=freqtrade --cov-config=.coveragerc freqtrade/tests/ + - script: python freqtrade/main.py hyperopt -e 5 + - script: python freqtrade/main.py backtesting after_success: - flake8 freqtrade && coveralls notifications: