mirror of
https://github.com/inspec/inspec
synced 2024-11-10 07:04:15 +00:00
add section on runner tests to readme
Signed-off-by: Dominik Richter <dominik.richter@gmail.com>
This commit is contained in:
parent
8499919b15
commit
72e3fbcb2a
1 changed files with 26 additions and 0 deletions
26
README.md
26
README.md
|
@ -99,6 +99,32 @@ describe gordon_config do
|
|||
end
|
||||
```
|
||||
|
||||
## Tests
|
||||
|
||||
### Runner
|
||||
|
||||
Runner tests will make sure the backend execution layer behaves as expected.
|
||||
These tests will take a while, as a lot of different operating systems and configurations
|
||||
are being tested.
|
||||
|
||||
You will require:
|
||||
|
||||
* vagrant with virtualbox
|
||||
* test-kitchen
|
||||
* docker
|
||||
|
||||
Run all tests via
|
||||
|
||||
```bash
|
||||
rake test:runner
|
||||
|
||||
# configure concurrency:
|
||||
CONCURRENCY=3 rake test:runner
|
||||
```
|
||||
|
||||
This will go to `test/runner` and run `kitchen converge`. You can test specific
|
||||
operating systems and configurations via test-kitchen.
|
||||
|
||||
## Contributing
|
||||
|
||||
1. Fork it
|
||||
|
|
Loading…
Reference in a new issue