mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 18:23:55 +00:00
Merge pull request #91 from gcarq/multiple_builds_travis
Parallel build in Travis
This commit is contained in:
commit
a237225683
|
@ -4,6 +4,9 @@ os:
|
|||
language: python
|
||||
python:
|
||||
- 3.6
|
||||
env:
|
||||
- BACKTEST=
|
||||
- BACKTEST=true
|
||||
addons:
|
||||
apt:
|
||||
packages:
|
||||
|
|
|
@ -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'))
|
||||
|
|
Loading…
Reference in New Issue
Block a user