Split.io SDK integration for e2e tests
Project description
Split.io SDK integration for e2e tests
Requirements
- Pytest >= 5.0
- splitio_client >= 8.0
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
pytest-splitio-0.1.0.tar.gz
(3.4 kB
view hashes)
Built Distribution
Close
Hashes for pytest_splitio-0.1.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7610044fd9d67c3ec76269aca9f4cb1dcacba3b545101f10f559ea68c1415d15 |
|
MD5 | f1dcaeee4e46ace70589297ece7d2002 |
|
BLAKE2-256 | 6a5df7865e6a040b62cd89e9eb86f3a3da9cbc4a6d46ffb7e65f7b743ee55f64 |