get.porter.sh/porter@v1.3.0/tests/integration/testdata/schema/invalid_mixin_config.yaml (about) 1 # This is a test bundle that has invalid mixin declarations 2 3 schemaVersion: 1.0.0 4 name: invalid-mixin-declaration 5 version: 0.1.0 6 description: "A very broken test bundle" 7 registry: localhost:5000 8 9 mixins: 10 - exec 11 # This isn't a valid mixin 12 - missingmixin 13 - testmixin: 14 # This isn't a valid property for testmixin 15 missingproperty: stuff 16 17 install: 18 - exec: 19 command: echo 20 arguments: 21 - install 22 23 upgrade: 24 - exec: 25 command: echo 26 arguments: 27 - upgrade 28 29 uninstall: 30 - exec: 31 command: echo 32 arguments: 33 - uninstall