| Index: infra/unittests/recipes_test.py
|
| diff --git a/infra/unittests/recipes_test.py b/infra/unittests/recipes_test.py
|
| index 7713425b92697bbdd31f64cf992a181583b80b16..ba5149ea27fda16de8bf397a45d2aac2b3fa79cc 100755
|
| --- a/infra/unittests/recipes_test.py
|
| +++ b/infra/unittests/recipes_test.py
|
| @@ -12,8 +12,11 @@ INFRA_DIR = os.path.dirname(THIS_DIR)
|
|
|
|
|
| def recipes_py(*args):
|
| - subprocess.check_call(
|
| - [os.path.join(INFRA_DIR, 'recipes.py'), '--use-bootstrap'] + list(args))
|
| + subprocess.check_call([
|
| + os.path.join(INFRA_DIR, 'recipes.py'),
|
| + '--deps-path=-',
|
| + '--use-bootstrap',
|
| + ] + list(args))
|
|
|
|
|
| recipes_py('simulation_test')
|
|
|