Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion esrally/track/loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def tracks(cfg):
:return: A list of tracks that are available for the provided distribution version or else for the main version.
"""
repo = track_repo(cfg)
return [_load_single_track(cfg, repo, track_name) for track_name in repo.track_names]
return [_load_single_track(cfg, repo, track_name, install_dependencies=True) for track_name in repo.track_names]


def list_tracks(cfg):
Expand Down