From cd6282be48fda2d3ea24d7a92021de9f163eba0f Mon Sep 17 00:00:00 2001 From: Jakub Dylag <jjd1c23@soton.ac.uk> Date: Tue, 29 Apr 2025 17:42:11 +0100 Subject: [PATCH] (fix) pytest test_diff() not configured correcty, with right old phen directory --- tests/test_acmc.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/test_acmc.py b/tests/test_acmc.py index f1447ad..34376c9 100644 --- a/tests/test_acmc.py +++ b/tests/test_acmc.py @@ -233,6 +233,8 @@ def test_diff(tmp_dir, monkeypatch, caplog): "diff", "-d", str(phen_path.resolve()), + "-od", + str(phen_path.resolve()), "-ov", "0.0.1", ], @@ -279,6 +281,8 @@ def test_diff(tmp_dir, monkeypatch, caplog): "diff", "-d", str(phen_path.resolve()), + "-od", + str(phen_path.resolve()), "-ov", "0.0.1", ], -- GitLab