Skip to content
Snippets Groups Projects
Commit 2e3ca9ae authored by Grégoire Kubler's avatar Grégoire Kubler
Browse files

fix: subprocess.check_call

parent 7a80cac0
No related branches found
No related tags found
2 merge requests!212Version 0.3.0,!116feat/release_pip
Pipeline #49877 waiting for manual action
......@@ -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"),
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment