Are .yaml files inside a folder noth included whil...
# ask-metaflow
s
Are .yaml files inside a folder noth included while running a metaflow orchestration flow on AWS batch?
Copy code
Directory structure:
-models
    -config.yaml
    -abc.py
flow.py
I am able to access abc.py but config.yaml does not exists in location.
1
v
you can include .yaml files with the
--package-suffixes
flag like this
Copy code
python myflow.py --package-suffixes yaml run
🙌 1