Skip to main content

Test your OpenTofu and Terraform config using a PyTest plugin

Project description

pytest-tf

GitHub License PyPI - Version PyPI - Python Version PyPI - Downloads

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 is tofu. 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 a types.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 a terraform folder in your tests 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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pytest_tf-0.1.0.tar.gz (4.6 kB view details)

Uploaded Source

Built Distribution

pytest_tf-0.1.0-py3-none-any.whl (6.0 kB view details)

Uploaded Python 3

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

Hashes for pytest_tf-0.1.0.tar.gz
Algorithm Hash digest
SHA256 26c47523dbeac84b1bc733faea2272b3a3872569d706d58a71956bd1ea13f1fe
MD5 523073cee7aae3d45e251ab61c50198a
BLAKE2b-256 05fbb52ff8149bb613bbc8c6aaac83e2016e11b51af024bb9e38bb54c5f4db7d

See more details on using hashes here.

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

Hashes for pytest_tf-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 f6fc0e900f70b9069e78116ea24367a5cc739facf2741de4f6c5d1c93432d184
MD5 27ff9d51c1aa7fe39e677371321794e3
BLAKE2b-256 5b3dab2fc1c0821cf004b10a5ab07b0c2990256c3a574137bd4ede6d5f6c7702

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page