Skip to content

Commit

Permalink
Readme: removed parallel exec docu
Browse files Browse the repository at this point in the history
see #72324
  • Loading branch information
Lucas Hinderberger authored and martinrode committed Jun 6, 2024
1 parent 0a7debf commit 97ab9b6
Showing 1 changed file with 0 additions and 23 deletions.
23 changes: 0 additions & 23 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,9 +151,6 @@ Manifest is loaded as **template**, so you can use variables, Go **range** and *

// We also support the external loading of a complete test:
"@pathToTest.json"

// By prefixing it with a p the testtool runs the tests all in parallel. All parallel tests are then set to ContinueOnFailure !
"p@pathToTestsThatShouldRunInParallel.json"
]
}
```
Expand Down Expand Up @@ -416,26 +413,6 @@ However that one will be stripped before parsing the template, which would be ju

** Unlike with delimiters, external tests/requests/responses don't inherit those removals, and need to be specified per file.

## Run tests in parallel

The tool is able to do run tests in parallel. You activate this mechanism by including a external testfile with `p@pathtofile.json`.
The `p@` indicates to load that external file and run all tests in it in parallel.

**All tests that are run in parallel are implicit set to ContinueOnFailure as otherwise the log and report would make no
sense**

```yaml
{
"name": "Binary Comparison",
"request": {
"endpoint": "suggest",
"method": "GET"
},
// Path to binary file with @
"response": "@simple.bin"
}
```

## Binary data comparison

The tool is able to do a comparison with a binary file. Here we take a MD5 hash of the file and and then later compare
Expand Down

0 comments on commit 97ab9b6

Please sign in to comment.