mirror of
https://github.com/microsoft/autogen.git
synced 2025-11-05 04:09:51 +00:00
8 lines
165 B
Python
8 lines
165 B
Python
|
|
def test_load_args():
|
||
|
|
import subprocess
|
||
|
|
import sys
|
||
|
|
|
||
|
|
subprocess.call(
|
||
|
|
[sys.executable, "load_args.py", "--output_dir", "data/"], shell=True
|
||
|
|
)
|