Test your OpenTofu and Terraform config using a PyTest plugin
Project description
pytest-tf
Test your OpenTofu and Terraform config using a PyTest plugin.
Usage
Simply add pytest-tf
as a dependency, then run pytest
with the following configuration options:
tf_runner
: The path to the program that will build the infrastructure. By default, this istofu
. Options:tofu
,terraform
.
Check the pytest documentation for more information on how to set ini options. You have multiple options:
You can set it in the command line:
pytest --override-ini tf_runner=terraform
Or you can set it in pyproject.toml
:
[tool.pytest.ini_options]
tf_runner = "terraform"
Or you can set it in pytest.ini
:
[pytest]
tf_runner = terraform
Or you can set it in tox.ini
:
[testenv]
setenv =
tf_runner = terraform
Note: The --capture=no
option is recommended to see the output of the Terraform commands.
Features
-
Fixture: The
tf
fixture handles the Terraform initialization, plan, apply and destroy steps. The init, plan and apply are run before the test, and the destroy is run after the test. The fixture is atypes.SimpleNamespace
with the following attributes:state
: The Terraform state file as a dict.
Example:
def test_tf(tf):
assert tf.state['resources']['aws_instance.example']['type'] == 'aws_instance'
-
Markers: The
tf_path
marker allows you to specify the path to the Terraform configuration folder. It is recommended you have aterraform
folder in yourtests
folder, and you create a separate folder for each test under it. The marker is a string with the path to the folder.Example:
import pytest
@pytest.mark.tf_path('tests/terraform/example')
def test_tf(tf):
...
License
This project is licensed under the MIT License - see the LICENSE file for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pytest_tf-0.1.0.tar.gz
.
File metadata
- Download URL: pytest_tf-0.1.0.tar.gz
- Upload date:
- Size: 4.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.12.3 Darwin/23.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 26c47523dbeac84b1bc733faea2272b3a3872569d706d58a71956bd1ea13f1fe |
|
MD5 | 523073cee7aae3d45e251ab61c50198a |
|
BLAKE2b-256 | 05fbb52ff8149bb613bbc8c6aaac83e2016e11b51af024bb9e38bb54c5f4db7d |
File details
Details for the file pytest_tf-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: pytest_tf-0.1.0-py3-none-any.whl
- Upload date:
- Size: 6.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.12.3 Darwin/23.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f6fc0e900f70b9069e78116ea24367a5cc739facf2741de4f6c5d1c93432d184 |
|
MD5 | 27ff9d51c1aa7fe39e677371321794e3 |
|
BLAKE2b-256 | 5b3dab2fc1c0821cf004b10a5ab07b0c2990256c3a574137bd4ede6d5f6c7702 |