Skip to content
Merged
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
6 changes: 1 addition & 5 deletions lnt/server/reporting/analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -405,11 +405,7 @@ def _load_samples_for_runs(self, session, run_ids, only_tests):
if only_tests:
q = q.filter(self.testsuite.Sample.test_id.in_(only_tests))
q = q.filter(self.testsuite.Sample.run_id.in_(to_load))
for data in q:
run_id = data[0]
test_id = data[1]
profile_id = data[2]
sample_values = data[3:]
for (run_id, test_id, profile_id, *sample_values) in q:
self.sample_map[(run_id, test_id)] = sample_values
if profile_id is not None:
self.profile_map[(run_id, test_id)] = profile_id
Expand Down
Loading