File size: 235 Bytes
fc329a3
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
from pathlib import Path
import subprocess
import sys

ROOT = Path(__file__).resolve().parents[1]
COMMANDS = [
    [sys.executable, str(ROOT / 'scripts' / 'run_all_synthetic.py')],
]
for cmd in COMMANDS:
    subprocess.check_call(cmd)