Hi, I face an issue while trying to run metaflow p...
# ask-metaflow
g
Hi, I face an issue while trying to run metaflow pipeline in AWS Batch. It ups all directories with .py file in it, but doesn’t up .yaml files. Why so and how can I handle this?
1
f
Hi! Only Python files is default Metaflow behavior. You can add other file types with this command
Copy code
--package-suffixes TEXT         A comma-separated list of file suffixes to
                                  include in the code package.  [default:
                                  .py,.R,.RDS]
python flow.py --package-suffixes=.yaml ... run ...
👍 1