Skip to content

Commit f65e7a7

Browse files
committed
Update .gitignore
1 parent 887dffd commit f65e7a7

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -183,3 +183,6 @@ fabric.properties
183183

184184
# idea folder, uncomment if you don't need it
185185
.idea
186+
187+
.pytest_cache/
188+
.ruff_cache/

main.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,11 @@ def run_script(script_name: str, args: Optional[List[str]] = None) -> None:
5252
subprocess.run(
5353
[sys.executable, script_path] + args, check=True, stdout=log, stderr=log
5454
)
55-
print(f"--- Finished running {script_name} ---", file=log)
55+
print(f"--- Finished running {script_name} ---", file=log)
5656
except subprocess.CalledProcessError as e:
57-
print(f" Error executing {script_name}: {e}", file=log)
57+
print(f" Error executing {script_name}: {e}", file=log)
5858
except FileNotFoundError:
59-
print(f" Script not found: {script_path}", file=log)
59+
print(f" Script not found: {script_path}", file=log)
6060

6161

6262
def find_existing_model(
@@ -282,7 +282,9 @@ def main() -> None:
282282
else:
283283
print("No explainability script found in src/ — skipping explainability stage.")
284284

285-
print("\n✅ Pipeline finished. Check reports/ for logs and generated artifacts.")
285+
print(
286+
"\n Pipeline tasks complete. Check reports/ for logs and generated artifacts."
287+
)
286288

287289

288290
def get_script_args(script_path: str) -> List[str]:

0 commit comments

Comments
 (0)