Created
May 29, 2017 09:21
-
-
Save garbas/a89d3aee2f15394673a6b87b38b88060 to your computer and use it in GitHub Desktop.
mock-pipeline
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "test1", | |
"steps": [ | |
{ | |
"uid": "mock1", | |
"url": "http://localhost:8012/mock", | |
"parameters": { | |
"timeout": 2 | |
} | |
}, | |
{ | |
"uid": "mock2", | |
"url": "http://localhost:8012/mock", | |
"parameters": { | |
"timeout": 5 | |
}, | |
"requires": [ | |
"mock1" | |
] | |
}, | |
{ | |
"uid": "mock3", | |
"url": "http://localhost:8012/mock", | |
"parameters": { | |
"timeout": 10 | |
}, | |
"requires": [ | |
"mock2" | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment