Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
sonichi committed Sep 19, 2023
1 parent a752259 commit 41074d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/openai.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
python -m pip install --upgrade pip wheel
pip install -e .[tune]
python -c "import autogen"
pip install coverage pytest datasets
pip install coverage pytest-asyncio datasets
- name: Install packages for test when needed
if: matrix.python-version == '3.9'
run: |
Expand Down
1 change: 1 addition & 0 deletions autogen/code_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,7 @@ def execute_code(
abs_path = str(pathlib.Path(work_dir).absolute()) + "/"
if result.returncode:
logs = result.stderr
print(str(abs_path), logs)
logs = logs.replace(str(abs_path), "")
else:
logs = result.stdout
Expand Down

0 comments on commit 41074d1

Please sign in to comment.