multi_test.yaml 310 B

123456789101112131415161718
  1. cli: '-c examples/multi.yaml all'
  2. output: |
  3. Load config examples/multi.yaml
  4. one
  5. print('one')
  6. one
  7. two
  8. print('two')
  9. two
  10. three
  11. print('three')
  12. three
  13. concat
  14. import os
  15. print(os.environ['one'], os.environ['two'], os.environ['_'])
  16. one two three
  17. print('nested')
  18. nested