Skip to main content

pytest plugin for providing variables to tests/fixtures

Project description

pytest-variables is a plugin for pytest that provides variables to tests/fixtures as a dictionary via a file specified on the command line.

License PyPI Travis Issues Requirements

Requirements

You will need the following prerequisites in order to use pytest-variables:

  • Python 2.7, 3.6, PyPy, or PyPy3

  • pytest 2.6 or newer

Installation

To install pytest-variables:

$ pip install pytest-variables

Additional formats

The following optional formats are supported, but must be explicitly installed as they require additional dependencies:

Human JSON

Human JSON is a configuration file format that caters to humans and helps reduce the errors they make. To install Human JSON support:

$ pip install pytest-variables[hjson]

YAML

YAML is a human friendly data serialization standard for all programming languages. To install YAML support:

$ pip install pytest-variables[yaml]

Specifying variables

Use the –variables command line option one or more times to specify paths to files containing your variables:

$ pytest --variables foo.json --variables bar.json

If multiple files are specified then they will be applied in the order they appear on the command line. When duplicates are encountered, the last to be applied will take priority.

Accessing variables

With a JSON variables file such as:

{
  "foo": "bar",
  "bar": "foo"
}

Specify the variables funcarg to make the variables available to your tests. The contents of the files are made available as a dictionary:

def test_foo(self, variables):
    assert variables['foo'] == 'bar'
    assert variables.get('bar') == 'foo'
    assert variables.get('missing') is None

Resources

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-variables-1.6.0.tar.gz (6.2 kB view details)

Uploaded Source

Built Distribution

pytest_variables-1.6.0-py2.py3-none-any.whl (6.7 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file pytest-variables-1.6.0.tar.gz.

File metadata

File hashes

Hashes for pytest-variables-1.6.0.tar.gz
Algorithm Hash digest
SHA256 49f296b9ca306bd575372f1fbe907ebf930499ec35b2f35b901a914ca820bba3
MD5 8d20908cede7937f56cd3aecb3c97043
BLAKE2b-256 bc8b51f7bd6a0febf646a9e5aac6f2537f18483efa206f93ed53c6c15e1ea3cb

See more details on using hashes here.

File details

Details for the file pytest_variables-1.6.0-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for pytest_variables-1.6.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 93bbd9179a45c737c0d2f9320668df1af5fc12a54ad24256f4ec9863aa78cd4a
MD5 2cb36efe502312b40d77b8ead02c6519
BLAKE2b-256 16e5f716821e8382aec0f4bdcda014b2c42bd232d871ac7b82b467c2cea78c3a

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