Metadata-Version: 2.1
Name: levo-commons
Version: 0.1.34
Summary: Common code between Levo CLI and test plans.
Home-page: https://github.com/levoai/levo-commons
Author: Levo Inc
Author-email: info@levo.ai
Project-URL: Bug Tracker, https://github.com/levo/levo-commons/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Provides-Extra: test

# levo-commons
Common code between Levo's CLI and test plans

# Running the checks and tests locally

```bash
# Pre-commit checks
pip install pre-commit
SKIP=pylint,mypy pre-commit run --all-files
pre-commit run mypy --all-files

# Unit tests
pip install tox
tox -e py
```
