Newer
Older
stages:
- build
- deploy
stage: build
before_script:
- pip3 install black numpy pandas
- black --check --diff --color .
- pip3 install --editable .[test]
- python -m pytest --cov finam --cov-report term-missing -v tests/
documentation:
stage: build
before_script:
- pip3 install sphinx numpy
- pip3 install --editable .

Martin Lange
committed
- sphinx-apidoc --separate -o docs src/finam