From 0203f7c67ac330b1d1c69cfa2f103d704fce9495 Mon Sep 17 00:00:00 2001
From: mdelitroz <maxime.delitroz@idiap.ch>
Date: Tue, 5 Sep 2023 13:57:51 +0200
Subject: [PATCH] fixed pipeline from Commit 0a0e9529

---
 tests/test_cli.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/tests/test_cli.py b/tests/test_cli.py
index d7f2c933..5799e332 100644
--- a/tests/test_cli.py
+++ b/tests/test_cli.py
@@ -339,7 +339,7 @@ def test_predict_pasa_montgomery(temporary_basedir, datadir):
             r"^Running prediction on `train` split...$": 1,
             r"^Running prediction on `validation` split...$": 1,
             r"^Running prediction on `test` split...$": 1,
-            r"^Predictions saved to .*$": 1
+            r"^Predictions saved to .*$": 1,
         }
 
         buf.seek(0)
@@ -370,7 +370,7 @@ def test_evaluate_pasa_montgomery(temporary_basedir):
                 "montgomery",
                 f"--predictions={prediction_folder}",
                 f"--output-folder={output_folder}",
-                "--threshold=test"
+                "--threshold=test",
             ],
         )
         _assert_exit_0(result)
@@ -384,7 +384,7 @@ def test_evaluate_pasa_montgomery(temporary_basedir):
             r"^Analyzing split `validation`...$": 1,
             r"^Analyzing split `test`...$": 1,
             r"^Saving measures at .*$": 1,
-            r"^Saving figures at .*$": 1
+            r"^Saving figures at .*$": 1,
         }
         buf.seek(0)
         logging_output = buf.read()
-- 
GitLab