From 2e3ca9ae2b70c8e59f766572e4d8d7f8e57be7f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20KUBLER?= <gregoire.kubler@proton.me> Date: Tue, 2 Jul 2024 15:03:15 +0200 Subject: [PATCH] fix: subprocess.check_call --- aidge_core/unit_tests/test_export.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aidge_core/unit_tests/test_export.py b/aidge_core/unit_tests/test_export.py index 7396def3a..96e2226be 100644 --- a/aidge_core/unit_tests/test_export.py +++ b/aidge_core/unit_tests/test_export.py @@ -99,11 +99,11 @@ class test_export(unittest.TestCase): ], cwd=str(self.EXPORT_PATH / "build"), ) - self.check_call( + subprocess.check_call( ["cmake", "--build", "."], cwd=str(self.EXPORT_PATH / "build"), ) - self.check_call( + subprocess.check_call( ["cmake", "--install", "."], cwd=str(self.EXPORT_PATH / "build"), ) -- GitLab