add flake evaluator, make hydraJob outputs optional

Signed-off-by: ahuston-0 <aliceghuston@gmail.com>
This commit is contained in:
2024-08-02 09:13:06 -04:00
parent b1b1ab5013
commit 7aaa10420f
5 changed files with 86 additions and 16 deletions

View File

@ -7,5 +7,8 @@ def parse_inputs():
parser.add_argument(
"flake_path", metavar="flake-path", help="path to flake to evaluate"
)
parser.add_argument(
"--keep-hydra", action="store_true",help="allow evaluating Hydra jobs"
)
args = parser.parse_args()
return args