Merge pull request #91 from gcarq/multiple_builds_travis

Parallel build in Travis
This commit is contained in:
Janne Sinivirta 2017-11-05 15:21:20 +02:00 committed by GitHub
commit a237225683
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View File

@ -4,6 +4,9 @@ os:
language: python
python:
- 3.6
env:
- BACKTEST=
- BACKTEST=true
addons:
apt:
packages:

View File

@ -147,7 +147,7 @@ def test_hyperopt(conf, pairs, mocker):
]),
}
trials = Trials()
best = fmin(fn=optimizer, space=space, algo=tpe.suggest, max_evals=40, trials=trials)
best = fmin(fn=optimizer, space=space, algo=tpe.suggest, max_evals=4, trials=trials)
print('\n\n\n\n====================== HYPEROPT BACKTESTING REPORT ================================')
print('Best parameters {}'.format(best))
newlist = sorted(trials.results, key=itemgetter('loss'))