26 lines
566 B
Markdown
26 lines
566 B
Markdown
|
Documentation on how to run Terraform Tests can be found here:
|
||
|
|
||
|
http://docs.getmoto.org/en/latest/docs/contributing/development_tips/tests.html#terraform-tests
|
||
|
|
||
|
To see a list of available tests:
|
||
|
|
||
|
```
|
||
|
cd tests/terraformtests/terraform-provider-aws
|
||
|
go test ./internal/service/elb/ -v -list TestAcc
|
||
|
```
|
||
|
|
||
|
To run a specific test:
|
||
|
|
||
|
```
|
||
|
moto_server -p 4566
|
||
|
make terraformtests SERVICE_NAME=elb TEST_NAMES=NewTestName
|
||
|
```
|
||
|
|
||
|
To see the list of tests that currently pass:
|
||
|
|
||
|
```
|
||
|
python tests/terraformtests/get_tf_services.py
|
||
|
python tests/terraformtests/get_tf_tests.py ec2
|
||
|
```
|
||
|
|