We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f52efd commit 6f6588aCopy full SHA for 6f6588a
src/agentlab/experiments/reproducibility_util.py
@@ -323,6 +323,8 @@ def append_to_journal(
323
_get_repo(agentlab) # if not based on git clone, this will raise an error
324
journal_path = Path(agentlab.__file__).parent.parent.parent / "reproducibility_journal.csv"
325
except InvalidGitRepositoryError:
326
+ logging.warning("Could not find a git repository. Saving the journal to the results directory."
327
+ "To add to the journal, git clone agentlab and use `pip install -e .`")
328
journal_path = RESULTS_DIR / "reproducibility_journal.csv"
329
330
logging.info(f"Appending to journal {journal_path}")
0 commit comments