This is the processing library for actinia-core.
It is a requirement of actinia-core and some actinia plugins and not meant to be used standalone.
For a DEV setup integrated with other actinia components, see here.
You can run the tests in the actinia test docker:
docker build -f docker/actinia-processing-lib-test/Dockerfile -t actinia-processing-lib-test .
docker run -it actinia-processing-lib-test -i
cd /src/actinia-processing-lib/
# run all tests
make test
# run only integrationtests
make integrationtest
# run only tests which are marked for development with the decorator '@pytest.mark.dev'
make devtest