From 7a48deafe7615392b458681bd23e6136ed20deb6 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Tue, 23 Mar 2021 23:57:05 +0300 Subject: project.cmake: set CMAKE_BUILD_PARALLEL_LEVEL --- project/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'project/utils.py') diff --git a/project/utils.py b/project/utils.py index 868592a..f40767a 100644 --- a/project/utils.py +++ b/project/utils.py @@ -47,9 +47,9 @@ def cd(path): os.chdir(cwd) -def run(cmd_line): +def run(cmd_line, **kwargs): logging.info('Running executable: %s', cmd_line) - return subprocess.run(cmd_line, check=True) + return subprocess.run(cmd_line, check=True, **kwargs) @contextmanager -- cgit v1.2.3