This commit is contained in:
Chi Wang 2023-09-19 13:52:31 +00:00
parent a752259192
commit 41074d127f
2 changed files with 2 additions and 1 deletions

View File

@ -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: |

View File

@ -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