mirror of https://github.com/microsoft/autogen.git
cleanup
This commit is contained in:
parent
a752259192
commit
41074d127f
|
@ -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: |
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue