Newer
Older
stages:
- build
- deploy
stage: build
before_script:
- pip3 install black numpy pandas
script:
- black . --check
- pip3 install --editable .
- python3 -m unittest discover -s tests -v
documentation:
stage: build
before_script:
- pip3 install sphinx numpy

Martin Lange
committed
- export PYTHONPATH="src"
- sphinx-apidoc --separate -o docs src/finam