Sequential A/B Testing Framework in Python
Easy installation via pip
$ pip install seqabpy
With each push to master
building workflow is triggered that,
besides the build itself, checks linters, applies tests and measures the coverage.
What is more, when the tag is pushed, PyPI workflow is triggered, that publishes a package and, in addition, builds GitHub release.
If you would like to contribute to the project yo can do the following
- Copy the repo
$ git clone https://github.com/NPodlozhniy/seqabpy.git
- Test the package
$ python -m pip install pytest coverage
$ coverage run --source=src --module pytest --verbose tests && coverage report --show-missing
- Install requirements for developers
$ pip install -r requirements_dev.txt
- Make changes and then release a new version
$ python -m build
$ python -m twine upload --repository testpypi dist/*