Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions autobuild/build_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from pathlib import Path
from typing import List

TIMEOUT_SECS = 36000
TIMEOUT_SECS = 60
BUILD_PATH = Path(__file__).parent

BUILD_PYTHON_INTERPRETER = os.environ.get("BUILD_PYTHON_INTERPRETER", "python3")
Expand Down Expand Up @@ -97,9 +97,6 @@ def execute_notebook(f, report=None, env=None):
text=True,
env=env,
)
print(result.stdout)
if result.stderr:
print(result.stderr, file=sys.stderr)
else:
subprocess.run(
["jupyter", "nbconvert", "--to", "notebook", "--execute", "--output", f, f],
Expand Down Expand Up @@ -221,9 +218,6 @@ def execute_script(f, report=None, env=None):
text=True,
env=env,
)
print(result.stdout)
if result.stderr:
print(result.stderr, file=sys.stderr)
else:
subprocess.run(
args,
Expand Down
1 change: 1 addition & 0 deletions autobuild/run_all.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ def run_workspace(name, workspace_dir, project, results_dir, python):
import os
env = os.environ.copy()
env["BUILD_PYTHON_INTERPRETER"] = python
env["PYTHONUNBUFFERED"] = "1"

for directory in directories:
print(f"\n Running {name} / scripts/{directory} ...")
Expand Down