Fix: include vm only linux for tag detection
[lttng-ci.git] / scripts / system-tests / generate-plots.py
index efc987734e95e808db75c88f570dce127c0d1ca8..5bab68da4e744807538044fc3e10648c01550162 100644 (file)
@@ -130,7 +130,7 @@ def create_metadata_file(res_dir):
             continue
         list_.append(metadata)
 
-    df = pd.concat(list_)
+    df = pd.concat(list_, sort=True)
     df.index=df.build_id
     df.sort_index(inplace=True)
     df.to_csv('metadata.csv', index=False)
@@ -160,7 +160,7 @@ def create_plots(res_dir):
             tmp['testcase'] = res.split('.')[0]
             list_.append(tmp)
 
-        df = pd.concat(list_)
+        df = pd.concat(list_, sort=True)
         df = convert_us_to_ns(df)
         df = rename_cols(df)
         df.sort_index(inplace=True)
This page took 0.02598 seconds and 4 git commands to generate.