Gordo core library


Keywords
gordo-core
License
AGPL-3.0
Install
pip install gordo-core==0.3.5

Documentation

Gordo core library.

The main component can be found here.

Documentation is available on Read the Docs

Installation

At least python 3.10 need to be installed in the system first.

pip3 install gordo-core

Developers Instructions

Setup

Install poetry.

Setup and run development shell instance:

> poetry install
> poetry shell

Pre-commit

You could also install and apply pre-commit hooks.

Run tests

Install docker (or similar container manager) if you want to run test-suite.

Run tests (except docker-related ones):

> poetry run pytest -n auto -m "not dockertest"

Run docker-related tests:

> poetry run pytest -m "dockertest"

Build documentation:

> cd docs/
> poetry run make watch