Installation

Download babs

git clone https://github.com/iskyd/babs
cd babs

Create virtual environment (OPTIONALS)

python -m venv venv

If you are using python you can use virtualenv

Install babs

pip install -e .

Test

pip install pytest
pytest

Run single test

pytest tests/[test_file.py]

Coverage

pip install pytest-cov
pytest --cov=babs --cov-report html:htmlcov

It will create htmlcov directory with html report.

If everything goes well… You are ready to get started!