Skip to main content

Split.io SDK integration for e2e tests

Project description

PyPI version Python versions

Split.io SDK integration for e2e tests


Requirements

  • Pytest >= 5.0

  • splitio_client >= 8.0

Installation

You can install “pytest-splitio” via pip from PyPI:

$ pip install pytest-splitio

Usage

There are two types of markers - skipif_split_not_equal and skipif_split_equals.

  • This test will be skipped if ‘cool-split-name’ split’s value is not equal to “on” value in environment

import pytest

@pytest.mark.skipif_split_not_equal('cool-split-name', 'on')
def test_m1():
    pass
  • This test will be skipped if ‘cool-split-name’ split’s value is equal to “off” value

import pytest

@pytest.mark.skipif_split_equals('cool-split-name', 'off')
def test_m2():
    pass

You can also add some logic inside your test, by checking split’s treatment value

  • Make sure to pass ‘split’ argument to your test function

def test_m3(split):
    split_treatment = split.get_treatment('cool-split-name')
    if split_treatment == 'on':
        print('YES!!!')

Now to Run your tests you need to specify –SPLIT-KEY argument or create an environment variable SPLIT_KEY, which should be environment SDK key:

$ python -m pytest --SPLIT-KEY="your-split-sdk-key"

Contributing

Contributions are very welcome.

License

Distributed under the terms of the MIT license, “pytest-splitio” is free and open source software

Issues

If you encounter any problems, please file an issue along with a detailed description.

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-splitio-0.1.0.tar.gz (3.4 kB view hashes)

Uploaded Source

Built Distribution

pytest_splitio-0.1.0-py3-none-any.whl (3.2 kB view hashes)

Uploaded Python 3

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