Split.io SDK integration for e2e tests
Project description
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
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-splitio-0.1.0.tar.gz
.
File metadata
- Download URL: pytest-splitio-0.1.0.tar.gz
- Upload date:
- Size: 3.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.6.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
a1e42b59837d0ff1ed844145cdbcc3963a51c30ada11554e2d0eb710fd4695e3
|
|
MD5 |
e1ffe5b5c41aa8a85e397cd8b825dde8
|
|
BLAKE2b-256 |
7e5d1116d635043eb85ef022d248922b952c05ebb61f65fff243982257b89e26
|
File details
Details for the file pytest_splitio-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: pytest_splitio-0.1.0-py3-none-any.whl
- Upload date:
- Size: 3.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.6.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
7610044fd9d67c3ec76269aca9f4cb1dcacba3b545101f10f559ea68c1415d15
|
|
MD5 |
f1dcaeee4e46ace70589297ece7d2002
|
|
BLAKE2b-256 |
6a5df7865e6a040b62cd89e9eb86f3a3da9cbc4a6d46ffb7e65f7b743ee55f64
|