generated from keploy/template
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add exit status codes for test pipeline
Signed-off-by: gouravkrosx <[email protected]>
- Loading branch information
1 parent
795dcc0
commit 7e19b14
Showing
2 changed files
with
91 additions
and
8 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
path: "" | ||
command: "" | ||
port: 0 | ||
proxyPort: 16789 | ||
dnsPort: 26789 | ||
debug: false | ||
disableANSI: false | ||
disableTele: false | ||
inDocker: false | ||
generateGithubActions: true | ||
containerName: "" | ||
networkName: "" | ||
buildDelay: 30s | ||
test: | ||
selectedTests: {} | ||
globalNoise: | ||
global: {} | ||
test-sets: {} | ||
delay: 5 | ||
apiTimeout: 5 | ||
coverage: false | ||
goCoverage: false | ||
coverageReportPath: "" | ||
ignoreOrdering: true | ||
mongoPassword: "default@123" | ||
language: "" | ||
removeUnusedMocks: false | ||
record: | ||
recordTimer: 0s | ||
filters: [] | ||
configPath: "" | ||
bypassRules: [] | ||
cmdType: "native" | ||
enableTesting: false | ||
fallbackOnMiss: false | ||
keployContainer: "keploy-v2" | ||
keployNetwork: "keploy-network" | ||
|
||
# Example on using tests | ||
#tests: | ||
# filters: | ||
# - path: "/user/app" | ||
# urlMethods: ["GET"] | ||
# headers: { | ||
# "^asdf*": "^test" | ||
# } | ||
# host: "dc.services.visualstudio.com" | ||
#Example on using stubs | ||
#stubs: | ||
# filters: | ||
# - path: "/user/app" | ||
# port: 8080 | ||
# - port: 8081 | ||
# - host: "dc.services.visualstudio.com" | ||
# - port: 8081 | ||
# host: "dc.services.visualstudio.com" | ||
# path: "/user/app" | ||
# | ||
#Example on using globalNoise | ||
#globalNoise: | ||
# global: | ||
# body: { | ||
# # to ignore some values for a field, | ||
# # pass regex patterns to the corresponding array value | ||
# "url": ["https?://\S+", "http://\S+"], | ||
# } | ||
# header: { | ||
# # to ignore the entire field, pass an empty array | ||
# "Date": [], | ||
# } | ||
# # to ignore fields or the corresponding values for a specific test-set, | ||
# # pass the test-set-name as a key to the "test-sets" object and | ||
# # populate the corresponding "body" and "header" objects | ||
# test-sets: | ||
# test-set-1: | ||
# body: { | ||
# # ignore all the values for the "url" field | ||
# "url": [] | ||
# } | ||
# header: { | ||
# # we can also pass the exact value to ignore for a field | ||
# "User-Agent": ["PostmanRuntime/7.34.0"] | ||
# } |
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