Skip to content

Commit 3aa392f

Browse files
committed
nice little readme change
1 parent c1b4a43 commit 3aa392f

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

README.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,13 @@ Fail: 1
4141
There are some gaps in this implementation at this point (these are things I plan to address):
4242

4343
1. There is not currently a way to pipe the response from a previous request into the next request. This is limiting as you often may need an ID from a previous request to make the next request.
44-
2. Currently, everything runs serially. The plan is to run each file in isolation against a thread pool. This will happen eventually, so if you start writing tests today, write them with this in mind (dont try to get fancy with sequencing of test files).
45-
3. Not all of the assertion types specified in the [specification](./HTTPSpec.md) are implemented yet.
44+
2. Not all of the assertion types specified in the [specification](./HTTPSpec.md) are implemented yet.
45+
46+
# Configuration
47+
48+
Do you have the need for speed? Tests are ran against a thread-pool and you can configure the number of jobs in said pool! Use the `HTTP_THREAD_COUNT` env var to specify the number of jobs in the pool.
49+
50+
Example:
51+
```bash
52+
HTTP_THREAD_COUNT=4 httpspec ./my_project/httptests/
53+
```

0 commit comments

Comments
 (0)